ef.js Two-way Binding
by Yukino Song
HTML
<script src="https://cdn.jsdelivr.net/npm/ef.js@latest"></script>
JavaScript
const { t } = ef
const demo = new t`
>div
>h2
.Welcome, {{name = Yukino}}!
.Input your name here:
>input
%value = {{name}}
`
demo.$mount({target: document.body})