nuxt property decorator modelsync no exported code example
Example: nuxt-property-decorator watch
import {
Watch,
} from "nuxt-property-decorator"
@Component({
components: { comp },
})
export class MyComponent extends Vue {
@Watch("child")
onChildChanged(val: string, oldVal: string) {}
}