mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
442 B
22 lines
442 B
/* 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)
|