28 lines
593 B
Vue
28 lines
593 B
Vue
<template>
|
|
<div>
|
|
<v-textarea :label="l.description" v-model="modelValue.description"></v-textarea>
|
|
<v-checkbox v-model="modelValue.hud" label="Observe in head-up display"></v-checkbox>
|
|
<v-img :src="`/asset/thumb/${modelValue.go}.webp`" />
|
|
<div class="text-caption text-center">{{ modelValue.title }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
data(){
|
|
return {
|
|
active: false
|
|
}
|
|
},
|
|
mounted(){
|
|
this.active = true;
|
|
},
|
|
props:{
|
|
modelValue: Object
|
|
},
|
|
methods:{
|
|
}
|
|
}
|
|
|
|
</script> |