• This project
    • Loading...
  • Sign in

LI WENHAO / Running-Football

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Running-Football
  • rf-blog
  • code
  • client
  • src
  • store
  • index.js
  • HU XUYANG's avatar
    add branch dev-client · 89fdcc10 ...
    89fdcc10
    init client
    init server-client
    HU XUYANG authored 2021-12-07 20:56:21 +0800
index.js 303 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import Vue from "vue";
import Vuex from "vuex";
import label from "./modules/label";
import search from "./modules/search";

Vue.use(Vuex);

const store = new Vuex.Store({
  state: {},
  mutations: {},
  actions: {},
  modules: {
    label,
    search,
  },
});

export default store;