Última actividad 1736432451

test.vue Sin formato
1<script>
2import { ref } from 'vue';
3
4const count = ref(0)
5<script>
6
7<template>
8 <button @click="() => count++">{{ count }}</button>
9</template>
10