選択できるのは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>