Vue.component('module-red-1-1', { template:`
{{label}}
`, props: { label:{ type:String }, amplify:{ type:Boolean }, name:{ type:String } }, data() { return { }; }, watch: { label: function (n, o) { this.modeltitle = this.label this.$forceUpdate() } } })