[Vuejs]-Vue Js Authentication with keeping same url for home component and login component

0👍

Following thread might help. It has different solutions.

https://github.com/vuejs/vue-router/issues/76

0👍

You can write something like,

<div v-if="isAuthenticated">
   <!-- Main Page -->
<div>
<div v-else>
   <!-- Login Page -->
<div>

isAuthenticated is a function which checks if user is authenticated or not.

Leave a comment