12 lines
164 B
Vue
12 lines
164 B
Vue
|
<script setup>
|
||
|
import { ref } from 'vue';
|
||
|
|
||
|
const count = ref(0);
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<VBtn @click="count++">
|
||
|
Clicky {{ count }} times
|
||
|
</VBtn>
|
||
|
</template>
|