wkb-common-ui
Version:
wkb-ui
18 lines (14 loc) • 401 B
JavaScript
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from "vue";
import entry from "./App";
import router from "./router";
import Wkb from "main/index.js";
import '../style'
Vue.config.productionTip = false;
Vue.use(Wkb);
/* eslint-disable no-new */
new Vue({
...entry,
router
}).$mount("#app");