11 lines
167 B
Vue
11 lines
167 B
Vue
|
<template>
|
||
|
<view>
|
||
|
{{counter.count}}
|
||
|
</view>
|
||
|
</template>
|
||
|
<script setup>
|
||
|
import {
|
||
|
counterStore
|
||
|
} from '@/store/counter'
|
||
|
const counter = counterStore()
|
||
|
</script>
|