storesrc 根目录下创建一个 store 文件夹store 的状态管理名use 开头,后面跟上是哪种类型的 store,如有关 note 类型的 store 命名就是 useNoteStoreimport { ref, computed } from 'vue'
import { defineStore } from 'pinia'
export const useNoteStore = defineStore('note', () => {
})