(四)在 pinia 里面创建状态

2023-02-22 15:40:41 浏览数 (1)

一、在 pinia 里面创建状态

  • defineStore 里面定义状态就跟在组件当中定义是一样的,使用 vueref 函数来定义,然后通过 return 来返回出去
代码语言:javascript复制
import { ref, computed } from 'vue'
import { defineStore } from 'pinia'

export const useNoteStore = defineStore('note', () => {
    const nodeList = ref([
        {
            // ...
        }
    ])

    return {
        nodeList
    }
})

0 人点赞