0👍
✅
Following thread might help. It has different solutions.
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.
Source:stackexchange.com