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