mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
19 lines
363 B
JavaScript
19 lines
363 B
JavaScript
import Vue from 'vue'
|
|
import ElementUI from 'element-ui'
|
|
import 'element-ui/lib/theme-default/index.css'
|
|
import './utils/less/custom.less'
|
|
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import 'whatwg-fetch'
|
|
|
|
Vue.use(ElementUI)
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
template: '<App/>',
|
|
components: { App }
|
|
})
|