WorkshopTasker/components/test.vue
2023-05-11 06:03:22 +02:00

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>