You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
540 B
TypeScript
30 lines
540 B
TypeScript
import Vue from 'vue'
|
|
|
|
import 'normalize.css'
|
|
import ElementUI from 'element-ui'
|
|
import SvgIcon from 'vue-svgicon'
|
|
|
|
import '@/styles/element-variables.scss'
|
|
import '@/styles/index.scss'
|
|
|
|
import App from '@/App.vue'
|
|
import store from '@/store'
|
|
import router from '@/router'
|
|
import '@/icons/components'
|
|
import '@/permission'
|
|
|
|
Vue.use(ElementUI)
|
|
Vue.use(SvgIcon, {
|
|
tagName: 'svg-icon',
|
|
defaultWidth: '1em',
|
|
defaultHeight: '1em'
|
|
})
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: (h) => h(App)
|
|
}).$mount('#app')
|