You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
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>