Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
Showing only changes of commit 27298a9860 - Show all commits

View File

@ -1,5 +1,6 @@
import { createStore } from 'vuex' import { createStore } from 'vuex'
import dashboard from './dashboard/index.js' import dashboard from './dashboard/index'
import budget from './budget/index'
const store = createStore({ const store = createStore({
state () { state () {
@ -27,7 +28,8 @@ const store = createStore({
} }
}, },
modules: { modules: {
dashboard dashboard,
budget
} }
}) })