const Counter = { data() { return { counter: 0 } } } Vue.createApp(Counter).mount('#counter')
<div id="counter"> Counter: {{ counter }} </div>