yanzhiAPP/pages/test/index.vue
2023-10-17 16:02:55 +08:00

11 lines
167 B
Vue

<template>
<view>
{{counter.count}}
</view>
</template>
<script setup>
import {
counterStore
} from '@/store/counter'
const counter = counterStore()
</script>