mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-05 19:42:08 +08:00
363 B
363 B
Pinia 状态管理
下一代 vuex,使用极其方便,ts 兼容好
目录结构
├── store
│ ├── modules
│ │ └── user.js
│ ├── index.js
使用
<script lang="ts" setup>
import { useUserStore } from "@/store/modules/user";
const userStore = useUserStore();
userStore.login();
</script>