chat-pc/src/store/modules/editor-draft.js
2024-12-24 16:14:21 +08:00

14 lines
239 B
JavaScript

import { defineStore } from 'pinia'
// 编辑器草稿
export const useEditorDraftStore = defineStore('editor-draft', {
// 开启数据持久化
persist: true,
state: () => {
return {
items: {}
}
},
actions: {}
})