feat: cwos-portal routing/store/api scaffolding

Adds router, store and simple API client setup


Former-commit-id: e306ed6f05c5a46563dcfd6bb13b8c29326fd3e4
This commit is contained in:
反编译工作区
2026-04-29 12:55:24 +08:00
parent fd3ee54135
commit 66f6d7b720
3 changed files with 43 additions and 0 deletions
@@ -0,0 +1,11 @@
import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex);
export default new Vuex.Store({
state: {},
mutations: {},
actions: {},
modules: {},
});