forked from dongweiming/wechat-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
46 lines (38 loc) · 1018 Bytes
/
main.js
File metadata and controls
46 lines (38 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import babelpolyfill from 'babel-polyfill'
import Vue from 'vue'
import App from './App'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-default/index.css'
import VueRouter from 'vue-router'
import store from './vuex/store'
import Vuex from 'vuex'
import routes from './routes'
import 'font-awesome/css/font-awesome.min.css'
import Wechat from './plugins/wechat';
import {emoji} from './plugins/emoji/src/api/emoji.js';
import descBlock from './components/desc-block.vue';
Vue.use(ElementUI)
Vue.use(VueRouter)
Vue.use(Vuex)
Vue.use(Wechat)
Vue.component('desc-block', descBlock)
Vue.prototype.emoji = emoji;
const router = new VueRouter({
routes
})
router.beforeEach((to, from, next) => {
let user = JSON.parse(sessionStorage.getItem('user'));
if (!user && to.path != '/login') {
next({ path: '/login' })
}
else if (user && to.path == '/login') {
next({ path: '/main' })
} else {
next()
}
})
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')