mirror of
https://github.com/501351981/vue-office.git
synced 2025-06-15 07:00:00 +08:00
15 lines
341 B
JavaScript
15 lines
341 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import VueRouter from 'vue-router'
|
|
import ElementUI from 'element-ui';
|
|
import 'element-ui/lib/theme-chalk/index.css';
|
|
import routes from "@/routes";
|
|
Vue.config.productionTip = false
|
|
Vue.use(VueRouter)
|
|
Vue.use(ElementUI);
|
|
|
|
new Vue({
|
|
router: routes,
|
|
render: h => h(App),
|
|
}).$mount('#app')
|