App

Bundles

Stats
BundleMinifiedGzipBrotli
index.js3.64 kB1.74 kB1.57 kB

Source

<script>
	let count = 0;
</script>

<button
	class="btn badge"
	data-badge="{count}"
	style="margin-top: 0.5rem"
	on:click="{() => count += 1}"
>
	count: {count}
</button>
import App from "./Counter.html";

new App({
	target: document.getElementById("app")
});