From 7ee521cc65736b1abd109f9cd2de2fd37341fabf Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 9 May 2025 13:28:48 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20src/store?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/store/index.ts diff --git a/src/store/index.ts b/src/store/index.ts new file mode 100644 index 0000000..100073a --- /dev/null +++ b/src/store/index.ts @@ -0,0 +1,9 @@ +import { createStore } from "vuex"; + +export default createStore({ + state: {}, + getters: {}, + mutations: {}, + actions: {}, + modules: {}, +});