|
@@ -3,6 +3,8 @@ import App from './App.vue'
|
|
|
import router from './router'
|
|
import router from './router'
|
|
|
import axios from 'axios';
|
|
import axios from 'axios';
|
|
|
import ElementUI from 'element-ui';
|
|
import ElementUI from 'element-ui';
|
|
|
|
|
+import VueI18n from 'vue-i18n';
|
|
|
|
|
+import { messages } from './components/common/i18n';
|
|
|
import 'element-ui/lib/theme-chalk/index.css'; // 默认主题
|
|
import 'element-ui/lib/theme-chalk/index.css'; // 默认主题
|
|
|
// import '../static/css/theme-green/index.css'; // 浅绿色主题
|
|
// import '../static/css/theme-green/index.css'; // 浅绿色主题
|
|
|
import './assets/css/icon.css';
|
|
import './assets/css/icon.css';
|
|
@@ -10,11 +12,17 @@ import './components/common/directives';
|
|
|
import "babel-polyfill";
|
|
import "babel-polyfill";
|
|
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.config.productionTip = false
|
|
|
|
|
+Vue.use(VueI18n);
|
|
|
Vue.use(ElementUI, {
|
|
Vue.use(ElementUI, {
|
|
|
size: 'small'
|
|
size: 'small'
|
|
|
});
|
|
});
|
|
|
Vue.prototype.$axios = axios;
|
|
Vue.prototype.$axios = axios;
|
|
|
|
|
|
|
|
|
|
+const i18n = new VueI18n({
|
|
|
|
|
+ locale: 'zh',
|
|
|
|
|
+ messages
|
|
|
|
|
+})
|
|
|
|
|
+
|
|
|
//使用钩子函数对路由进行权限跳转
|
|
//使用钩子函数对路由进行权限跳转
|
|
|
router.beforeEach((to, from, next) => {
|
|
router.beforeEach((to, from, next) => {
|
|
|
const role = localStorage.getItem('ms_username');
|
|
const role = localStorage.getItem('ms_username');
|
|
@@ -38,5 +46,6 @@ router.beforeEach((to, from, next) => {
|
|
|
|
|
|
|
|
new Vue({
|
|
new Vue({
|
|
|
router,
|
|
router,
|
|
|
|
|
+ i18n,
|
|
|
render: h => h(App)
|
|
render: h => h(App)
|
|
|
}).$mount('#app')
|
|
}).$mount('#app')
|