web-component-base icon indicating copy to clipboard operation
web-component-base copied to clipboard

attach an effect to an uninitialized property

Open ayoayco opened this issue 1 year ago • 2 comments
trafficstars

static properties = ['count']
onInit() {
  attachEffect(this.props.count, (c) => doSomething(c));
}

ayoayco avatar Dec 02 '23 11:12 ayoayco