最后活跃于 1736432451

1 修订了这个 Gist 1736432450. 跳至此修订

1 file changed, 9 insertions

test.vue(文件已创建)

@@ -0,0 +1,9 @@
1 + <script>
2 + import { ref } from 'vue';
3 +
4 + const count = ref(0)
5 + <script>
6 +
7 + <template>
8 + <button @click="() => count++">{{ count }}</button>
9 + </template>
更新 更早