massive interactive objects refactoring

This commit is contained in:
2026-04-04 10:57:43 +03:00
parent 401a6cb144
commit 6009d52139
30 changed files with 104 additions and 28 deletions
@@ -0,0 +1,26 @@
<template>
<div>
<v-textarea :label="l.text" v-model="modelValue.text" class="mt-3"></v-textarea>
<v-number-input density="compact" :precision="null" :label="l.maxWidth" :step="0.1" v-model="modelValue.maxWidth"></v-number-input>
</div>
</template>
<script>
export default {
data(){
return {
active: false
}
},
mounted(){
this.modelValue.maxWidth ??= 1;
this.active = true;
},
props:{
modelValue: Object
},
methods:{
}
}
</script>