34 lines
827 B
Vue
34 lines
827 B
Vue
<template>
|
|
<div v-if="modelValue.go">
|
|
<v-img :src="`/asset/thumb/${modelValue.go}.webp`" />
|
|
<div class="text-caption text-center">{{ modelValue.title }}</div>
|
|
</div>
|
|
<asset-selector @select="assignCharacter" :type="['Character']">
|
|
<template v-slot:activator="props">
|
|
<v-btn v-bind="props" prepend-icon="mdi-video-box" color="deep-orange-darken-4" block>Select character</v-btn>
|
|
</template>
|
|
</asset-selector>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
data(){
|
|
return {
|
|
active: false
|
|
}
|
|
},
|
|
mounted(){
|
|
this.active = true;
|
|
},
|
|
props:{
|
|
modelValue: Object
|
|
},
|
|
methods:{
|
|
assignCharacter(e){
|
|
this.modelValue.go = e.id;
|
|
this.modelValue.title = e.name
|
|
}
|
|
}
|
|
}
|
|
</script> |