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.

21 lines
442 B

  1. /* eslint-disable import/first */
  2. import Vue from 'vue'
  3. import Vuetify from 'vuetify/lib'
  4. import boot from './modules/boot'
  5. /* eslint-enable import/first */
  6. window.WIKI = null
  7. window.boot = boot
  8. Vue.use(Vuetify)
  9. Vue.component('setup', () => import(/* webpackMode: "eager" */ './components/setup.vue'))
  10. let bootstrap = () => {
  11. window.WIKI = new Vue({
  12. el: '#root',
  13. vuetify: new Vuetify()
  14. })
  15. }
  16. window.boot.onDOMReady(bootstrap)