diff --git a/src/stores/project.ts b/src/stores/project.ts index 42fa802..e69de29 100644 --- a/src/stores/project.ts +++ b/src/stores/project.ts @@ -1,14 +0,0 @@ -import { defineStore } from "pinia"; -import type { JSONContent } from "@tiptap/vue-3"; - -export const useProjectStore = defineStore("projects", { - state: () => ({ - project: [] as JSONContent[], - }), - - actions: { - setProjectData(project: Array) { - this.$state.project = project; - }, - }, -});