How can I check login?

How can I check Login when use F7-Vue whitout Async Route?(Async Route doesn’t work in F7-vue?)
@nolimits4web

Using Vue’s v-if:

<f7-view url="/home" v-if="userLoggedIn"></f7-view>
<f7-login-screen v-else>...</f7-login-screen>
1 Like

Or if you mean when navigating between pages, then you yes, you can use async route, it works in Vue

1 Like