UNPKG

@v4fire/client

Version:

V4Fire client core library

16 lines (12 loc) 259 B
# core/component/decorators This module provides a bunch of decorators to annotate a component. ```typescript export default class bExample { @prop(String) readonly foo: string; @watch('foo') onFoo() { console.log('Foo was changed'); } } ```