Initial commit

This commit is contained in:
N-Pex 2020-11-09 10:26:56 +01:00
parent 60df431f80
commit fd332bda79
22 changed files with 13206 additions and 0 deletions

38
src/router/index.js Normal file
View file

@ -0,0 +1,38 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
import Chat from '../components/Chat.vue'
import Login from '../components/Login.vue'
Vue.use(VueRouter)
const routes = [
{
path: '/',
name: 'Chat',
component: Chat
},
{
path: '/login',
component: Login
},
]
const router = new VueRouter({
routes
})
router.beforeEach((to, from, next) => {
const publicPages = ['/login'];
const authRequired = !publicPages.includes(to.path);
const loggedIn = localStorage.getItem('user');
// trying to access a restricted page + not logged in
// redirect to login page
if (authRequired && !loggedIn) {
next('/login');
} else {
next();
}
});
export default router