Ganto 2 жил өмнө
parent
commit
97d5cde723
1 өөрчлөгдсөн 2 нэмэгдсэн , 0 устгасан
  1. 2 0
      src/pages/Home.vue

+ 2 - 0
src/pages/Home.vue

@@ -1,9 +1,11 @@
 <template>
   <div>欢迎浏览 干徒工作室</div>
+  <span @click="count++">{{ count }}</span>
 </template>
 
 <script setup lang='ts'>
   import { ref } from 'vue'
+  const count = ref(0)
 </script>
 
 <style lang='scss' scoped>