при попытке попробовать пример кода из stenciljs
doc - https://stenciljs.com/docs/templating-jsx, Я столкнулся с одной проблемой.Обработчик события click не запускается вообще.
import { Component, h } from '@stencil/core';
@Component({
tag: 'my-component',
shadow: true
})
export class MyComponent {
handleClick(event: UIEvent) {
alert('Received the button click!');
}
render() {
return (
<button onClick={ (event: UIEvent) => this.handleClick(event)}>Click Me!</button>
);
}
}
- код index.html -
<my-component></my-component>