mixit/compiler/src/core/input/baseSetting.vue

14 lines
195 B
Vue

<script>
export default {
props: {
id: String,
title: String
},
methods: {
sendChange(value) {
this.$emit('change', { name: this.id, value: value })
}
}
}
</script>