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