From 1a3b1d347f6042a2c9699115e96148d0372ab837 Mon Sep 17 00:00:00 2001 From: Alexis <35.alexis.pele@gmail.com> Date: Tue, 25 Apr 2023 11:39:38 +0200 Subject: [PATCH] Removed project store --- src/stores/project.ts | 14 -------------- 1 file changed, 14 deletions(-) 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; - }, - }, -});