const {t} = ef
const App = t`
>button
@click = handleClick
.Click me!
`
const app = new App({
$methods: {
handleClick() {
alert('Button clicked!')
}
}
})
app.$mount({target: document.body})
This Pen doesn't use any external CSS resources.