App

Bundles

Stats
BundleMinifiedGzipBrotli
index.js50.3 kB19.8 kB18.1 kB

Source

<template>
	<button
		class="btn badge"
		style="margin-top: 0.5rem;"
		v-on:click="count += 1"
		v-bind:data-badge="count"
	>
		count: {{ count }}
	</button>
</template>

<script>
export default {
	data() {
		return {
			count: 0
		};
	}
};
</script>
import { createApp } from "vue";
import Counter from "./Counter.vue";

createApp(Counter).mount("#app");