Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

马贞晓 / templateVUE

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • templateVUE
  • src
  • vuex
  • index.js
  • 马贞晓's avatar
    基础搭建 · b9d26ef2
    马贞晓 committed Nov 10, 2019
    b9d26ef2
index.js 209 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)

import pc from "./pc";
import AffixBox from "./AffixBox";
const store = new Vuex.Store({
  modules: {
    pc,AffixBox
  }
})

export default store;