chat-pc/src/store/modules/editor-draft.js

14 lines
239 B
JavaScript
Raw Normal View History

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