You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.ts 243B

12345678910111213141516
  1. import Vue from 'vue'
  2. import Vuex, { Store } from 'vuex'
  3. import files from './files'
  4. import paths from './paths'
  5. import selection from './selection'
  6. Vue.use(Vuex)
  7. export default new Store({
  8. modules: {
  9. files,
  10. paths,
  11. selection,
  12. },
  13. })