45fef9b431
* perf[navbar]: set langSelect to component && refine errorLog component
* feat[login]:add 18n to login form
* fix[pagination]: fixed when selected page-sizes
* perf[i18n]:dashboard document svg permission
* perf[charts]: perf effect
* perf[i18n]:excel && zip
* perf[i18n]: table && errorLog && theme
* perf[i18n]: components
* perf[i18n]: direct use $t
* perf[i18n]: complex-table
* update README.md
* update README.md 📘
* perf[i18n]: refine code comments
41 lines
905 B
JavaScript
41 lines
905 B
JavaScript
import Vue from 'vue'
|
|
|
|
import 'normalize.css/normalize.css'// A modern alternative to CSS resets
|
|
|
|
import Element from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
|
|
import '@/styles/index.scss' // global css
|
|
|
|
import App from './App'
|
|
import router from './router'
|
|
import store from './store'
|
|
|
|
import i18n from './lang' // Internationalization
|
|
import './icons' // icon
|
|
import './errorLog'// error log
|
|
import './permission' // permission control
|
|
import './mock' // simulation data
|
|
|
|
import * as filters from './filters' // global filters
|
|
|
|
Vue.use(Element, {
|
|
size: 'medium', // set element-ui default size
|
|
i18n: (key, value) => i18n.t(key, value)
|
|
})
|
|
|
|
// register global utility filters.
|
|
Object.keys(filters).forEach(key => {
|
|
Vue.filter(key, filters[key])
|
|
})
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
store,
|
|
i18n,
|
|
template: '<App/>',
|
|
components: { App }
|
|
})
|