2020-11-18 13:21:33 +00:00
|
|
|
import Vue from 'vue'
|
2020-11-19 09:01:55 +00:00
|
|
|
import router from './router'
|
|
|
|
import store from './store'
|
|
|
|
import Dashboard from './components/Dashboard.vue'
|
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
OCA.Dashboard.register('radio', (el) => {
|
|
|
|
global.Radio = new Vue({
|
|
|
|
el,
|
|
|
|
store,
|
|
|
|
router,
|
|
|
|
render: h => h(Dashboard),
|
|
|
|
})
|
2020-11-18 13:21:33 +00:00
|
|
|
})
|
|
|
|
})
|