UNPKG

create-vanjs

Version:

🍦 Quick tool for scaffolding your first VanJS project

10 lines (8 loc) 225 B
import van from "vanjs-core"; export const Counter = () => { const { button } = van.tags; const counter = van.state(0); return ( button({ class: "btn", onclick: () => ++counter.val }, "Counter: ", counter) ); };