<div id="app">
{{count}}
<button @click="increment"> plus </button>
</div>
const {createApp,ref} = Vue
console.clear();
const APP={
setup(){
const count=ref(0);
function increment () {
count.value++;
}
return {
count,
increment
}
}
}
const app=createApp(APP);
app.mount('#app');
This Pen doesn't use any external CSS resources.