您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
 
 
 

30 行
516 B

<template>
<div>{{ name }} -- {{ showCount }}</div>
<button @click="addBtn">addBtn</button>
</template>
<script setup lang="ts">
import {ref, computed} from 'vue'
import {useStore} from '@/store/index'
const store = useStore()
const showCount = computed(() => {
return store.getters.getNum
})
const count = ref(showCount.value)
const name = ref('this is about')
const addBtn = () => {
store.commit('setNum', ++count.value)
}
</script>
<style scoped lang="scss">
button{
margin-top: 10px;
}
</style>