This commit is contained in:
j3d1 2024-03-11 02:41:48 +01:00
parent 7512ba76da
commit c81a179c40
4 changed files with 11 additions and 16 deletions

View file

@ -85,14 +85,6 @@ export default {
event: "modelChange"
},
computed: {
localValue: {
get() {
return this.property.value
},
set(value) {
this.$emit("input", {...this.property,value})
}
},
prettyDescription() {
var d = this.property.description ? this.property.description : this.property.name
if (this.property.unit_name) {

View file

@ -13,12 +13,6 @@
</template>
<style scoped>
.taglist {
display: flex;
flex-wrap: wrap;
gap: 0.3rem;
padding: .25rem;
}
</style>
<script>
@ -58,7 +52,6 @@ export default {
},
set(value) {
this.$emit("input", value);
console.log("set", value);
}
},
splicedValue() {