22 lines
442 B
JavaScript
22 lines
442 B
JavaScript
/* eslint-disable import/first */
|
|
import Vue from 'vue'
|
|
import Vuetify from 'vuetify/lib'
|
|
import boot from './modules/boot'
|
|
/* eslint-enable import/first */
|
|
|
|
window.WIKI = null
|
|
window.boot = boot
|
|
|
|
Vue.use(Vuetify)
|
|
|
|
Vue.component('setup', () => import(/* webpackMode: "eager" */ './components/setup.vue'))
|
|
|
|
let bootstrap = () => {
|
|
window.WIKI = new Vue({
|
|
el: '#root',
|
|
vuetify: new Vuetify()
|
|
})
|
|
}
|
|
|
|
window.boot.onDOMReady(bootstrap)
|