UNPKG

385 BJavaScriptView Raw
1import Vue from 'vue'
2
3import App from './App'
4import VueForm from '../dist/vueform'
5import router from './router'
6
7Vue.use(VueForm)
8
9const wfLoadinginterval = setInterval(() => {
10 if (document.documentElement.className.indexOf('wf-active') !== -1) {
11 clearInterval(wfLoadinginterval)
12 /* eslint-disable no-new */
13 new Vue({ el: '#app', router, render: h => h(App) })
14 }
15})