cultivationApp/pages/test/index.vue

11 lines
167 B
Vue
Raw Normal View History

2023-10-17 16:02:55 +08:00
<template>
<view>
{{counter.count}}
</view>
</template>
<script setup>
import {
counterStore
} from '@/store/counter'
const counter = counterStore()
</script>