You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextcloud/apps/files/src/store/index.ts

17 lines
243 B
TypeScript

import Vue from 'vue'
import Vuex, { Store } from 'vuex'
import files from './files'
import paths from './paths'
import selection from './selection'
Vue.use(Vuex)
export default new Store({
modules: {
files,
paths,
selection,
},
})