Removed project store

This commit is contained in:
Alexis
2023-04-25 11:39:38 +02:00
parent 4749e13078
commit 1a3b1d347f

View File

@@ -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<JSONContent>) {
this.$state.project = project;
},
},
});