Fix styling and rename to actual dashboard api

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-08-20 15:40:38 +02:00
parent 31a9162ff4
commit aa244108c8
14 changed files with 92 additions and 60 deletions

View File

@@ -23,7 +23,11 @@
import Vue from 'vue'
import Vuex from 'vuex'
import dashboard from './store/dashboard'
import overview from './store/overview'
import './css/dashboard.scss'
import Dashboard from './views/Dashboard.vue'
Vue.use(Vuex)
@@ -31,13 +35,11 @@ const debug = process.env.NODE_ENV !== 'production'
const store = new Vuex.Store({
modules: {
dashboard,
overview,
},
strict: debug,
})
import './css/dashboard.scss'
// eslint-disable-next-line
__webpack_nonce__ = btoa(OC.requestToken);
// eslint-disable-next-line
@@ -45,9 +47,7 @@ __webpack_public_path__ = OC.linkTo('deck', 'js/');
Vue.prototype.t = t
Vue.prototype.n = n
Vue.prototype.OC = OC;
import Dashboard from './views/Dashboard.vue'
Vue.prototype.OC = OC
document.addEventListener('DOMContentLoaded', () => {
OCA.Dashboard.register('deck', (el) => {
@@ -56,5 +56,6 @@ document.addEventListener('DOMContentLoaded', () => {
propsData: {},
store,
}).$mount(el)
return vm
})
})