一、创建 store
- 闲在根目录
src
根目录下创建一个store
文件夹 - 创建
store
的状态管理名
- defineStore 的第一个参数是 store 的 id 他是用于区分是哪个 store 这样就不会命名冲突了
- defineStore 第二个参数 因为使用的时候 setup 的语法,所以传递是一个没有参数的回调函数
- 命名规则-以
use
开头,后面跟上是哪种类型的store
,如有关note
类型的store
命名就是useNoteStore
import { ref, computed } from 'vue'
import { defineStore } from 'pinia'
export const useNoteStore = defineStore('note', () => {
})