美文网首页
Pinia使用指南

Pinia使用指南

作者: 小番茄1009 | 来源:发表于2022-11-04 15:11 被阅读0次

    1、安装
    yarn add pinia@next
    2、使用
    a.在main.ts中引用
    import {createPinia} from 'pinia' app.use(createPinia())
    b.新建文件,
    import { defineStore } from 'pinia' export const useTodoStore = defineStore({ id: 'todo', state: () => ({ count: 0, title: "Cook noodles", done:false }) })
    c.在vue3的文件中使用
    <script setup lang="ts"> import { useTodoStore } from '@/stores/index' const global = useTodoStore() </script> <template> <h2>{{global.count}}</h2> </template>

    相关文章

      网友评论

          本文标题:Pinia使用指南

          本文链接:https://www.haomeiwen.com/subject/zhmytdtx.html