UNPKG

py-web-vue

Version:

Generic client application to work with a PyWebVue server

17 lines (16 loc) 240 B
export default { name: 'StateUpdate', props: { value: { type: String, default: '', }, }, watch: { value(current) { this.$nextTick(() => { this.$emit('change', current); }); }, }, };