二、Vue3全局状态管理工具pinia仓库初始化

第一步:在src目录下新建store文件夹,store下面创建一个index.ts文件,定义仓库Store

src/store/index.ts中引入defineStore;

import { defineStore } from 'pinia';

存储是使用定义的defineStore(),并且它需要一个唯一的名称,作为第一个参数传递

我们将名称抽离出去,store文件夹下新建文件store-namespace/index.ts

export const enum Names {
    Test = 'TEST'
}

在src/store/index.ts中引入store-namespace/index.ts

import { defineStore } from 'pinia';
import { Names } from './store-name';
// 这个名称,也称为id,是必要的,Pania 使用它来将商店连接到 devtools。
// 将返回的函数命名为use...是可组合项之间的约定,以使其使用习惯。
export const useTestStore = defineStore(Names.Test, {

});

第二步:定义值

import { defineStore } from 'pinia';
import { Names } from './store-name';
// 这个名称,也称为id,是必要的,Pania 使用它来将商店连接到 devtools。
// 将返回的函数命名为use...是可组合项之间的约定,以使其使用习惯。
export const useTestStore = defineStore(Names.Test, {
    state:()=>{
        return {
            current:1111,
            name: '张三'
        }
    },
    getters:{ // 类似computed计算属性 同样有缓存的

    },
    actions:{ // 类似 methods方法 可以做同步、异步操作 提交state

    }
});

第三步:在页面中取值




你可能感兴趣的:(vue.js入门,vue.js,前端,javascript)