main.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. import Vue from 'vue';
  2. import App from './App';
  3. import router from './router';
  4. import axios from 'axios';
  5. import ElementUI from 'element-ui';
  6. import 'element-ui/lib/theme-chalk/index.css'; // 默认主题
  7. // import '../static/css/theme-green/index.css'; // 浅绿色主题
  8. import "babel-polyfill";
  9. Vue.use(ElementUI, { size: 'small' });
  10. Vue.prototype.$axios = axios;
  11. //使用钩子函数对路由进行权限跳转
  12. router.beforeEach((to, from, next) => {
  13. const role = localStorage.getItem('ms_username');
  14. if(!role){
  15. next('/login');
  16. }else if(to.meta.permission){
  17. // 如果是管理员权限则可进入,这里只是简单的模拟管理员权限而已
  18. role === 'admin' ? next() : next('/403');
  19. }else{
  20. // 简单的判断IE10及以下不进入富文本编辑器,该组件不兼容
  21. if(navigator.userAgent.indexOf('MSIE') > -1 && to.path === '/editor'){
  22. Vue.prototype.$alert('vue-quill-editor组件不兼容IE10及以下浏览器,请使用更高版本的浏览器查看', '浏览器不兼容通知', {
  23. confirmButtonText: '确定'
  24. });
  25. }else{
  26. next();
  27. }
  28. }
  29. })
  30. new Vue({
  31. router,
  32. render: h => h(App)
  33. }).$mount('#app');