Router and store

This commit is contained in:
James Cole
2022-02-27 10:14:26 +01:00
parent 3a49af94d0
commit cddfa3a8d2
14 changed files with 1283 additions and 0 deletions

12
frontend/src/store/fireflyiii/index.js vendored Normal file
View File

@@ -0,0 +1,12 @@
import state from './state'
import * as getters from './getters'
import * as mutations from './mutations'
import * as actions from './actions'
export default {
namespaced: true,
state,
getters,
mutations,
actions
}