web-component-base
web-component-base copied to clipboard
attach an effect to an uninitialized property
trafficstars
static properties = ['count']
onInit() {
attachEffect(this.props.count, (c) => doSomething(c));
}