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.
34 lines
757 B
34 lines
757 B
![]()
2 years ago
|
import Vue from 'vue'
|
||
|
|
||
|
import 'normalize.css/normalize.css'// A modern alternative to CSS resets
|
||
|
|
||
|
import ElementUI from 'element-ui'
|
||
|
import 'element-ui/lib/theme-chalk/index.css'
|
||
|
import locale from 'element-ui/lib/locale/lang/zh-CN' // lang i18n
|
||
|
import VCharts from 'v-charts'
|
||
|
|
||
|
import '@/styles/index.scss' // global css
|
||
|
|
||
|
import App from './App'
|
||
|
import router from './router'
|
||
|
import store from './store'
|
||
|
|
||
|
import '@/icons' // icon
|
||
|
import '@/permission' // permission control
|
||
|
import '@/components/templatePage/static/common/common.less'
|
||
|
|
||
|
|
||
|
Vue.use(ElementUI, { locale })
|
||
|
import('element-ui/lib/theme-chalk/index.css')
|
||
|
Vue.use(VCharts)
|
||
|
|
||
|
Vue.config.productionTip = false
|
||
|
|
||
|
new Vue({
|
||
|
el: '#app',
|
||
|
router,
|
||
|
store,
|
||
|
template: '<App/>',
|
||
|
components: { App }
|
||
|
})
|