mcfly/public/output/clickable-text.js
2023-10-08 09:21:45 +02:00

10 lines
307 B
JavaScript

import WebComponent from "https://unpkg.com/web-component-base/index.js";
export default class ClickableText extends WebComponent {
onInit() {
this.onclick = () => alert("Thank you for clicking the text!");
}
get template() {
return `<span style="cursor:pointer">Click me too!</span>`;
}
}