Я новичок в Nativescript Vue. У меня есть страница входа, а затем страница с вкладками BottomNavigation. Когда я пытаюсь выйти из вкладки профиля, я не могу перейти на страницу входа. Он открывает страницу входа внутри вкладки.
При загрузке приложения открывается вход в систему. Когда пользователь входит в систему, он перенаправляется в приложение. vue, где находятся вкладки. И мне нужно выйти и перенаправить внутри вкладки.
Как я могу открыть страницу входа не внутри вкладки?
Вход. vue
<template>
<Page>
<FlexboxLayout class="page">
<StackLayout class="form">
<Image class="logo" src="~/assets/images/logo.png" />
<StackLayout class="input-field" marginBottom="25">
<TextField class="input"
hint="E-mail"
keyboardType="email"
autocorrect="false"
autocapitalizationType="none"
v-model="user.email"
returnKeyType="next"
fontSize="18"
/>
<StackLayout class="hr-light" />
</StackLayout>
<StackLayout class="input-field" marginBottom="25">
<TextField ref="password"
class="input"
hint="Password"
secure="true"
v-model="user.password"
:returnKeyType="'done'"
fontSize="18"
/>
<StackLayout class="hr-light" />
</StackLayout>
<Button :text="'Log In'"
@tap="submit"
class="btn btn-primary m-t-20"
/>
<Label text="Forgot your password?"
class="login-label"
@tap="forgotPassword"
/>
</StackLayout>
</FlexboxLayout>
</Page>
</template>
Приложение. vue
<template lang="html">
<Page>
<ActionBar>
<NavigationButton visibility="collapsed"></NavigationButton>
<StackLayout orientation="horizontal">
<Image src="~/assets/images/test.png"></Image>
<Label text="Telematics"></Label>
</StackLayout>
</ActionBar>
<BottomNavigation>
<TabStrip>
<TabStripItem class="navigation__item">
<Label text="Tracking"></Label>
<Image src.decode="font://" class="fas t-36"></Image>
</TabStripItem>
<TabStripItem class="navigation__item">
<Label text="Browse"></Label>
<Image src.decode="font://" class="far t-36"></Image>
</TabStripItem>
<TabStripItem class="navigation__item">
<Label text="Profile"></Label>
<Image src.decode="font://" class="fas t-36"></Image>
</TabStripItem>
</TabStrip>
<TabContentItem>
<Frame>
<Items />
</Frame>
</TabContentItem>
<TabContentItem>
<Frame>
<Browse />
</Frame>
</TabContentItem>
<TabContentItem>
<Frame>
<Profile />
</Frame>
</TabContentItem>
</BottomNavigation>
</Page>
</template>
Профиль. vue
<template lang="html">
<Page actionBarHidden="true">
<GridLayout class="page__content">
<Label class="page__content-placeholder"
v-if="getEmail"
:text="getEmail"
></Label>
<Label class="page__content-icon fas" text.decode=""></Label>
<Button :text="'Log Out'"
@tap="logout"
class="btn btn-primary m-t-20"
/>
</GridLayout>
</Page>
</template>
Способ выхода
logout() {
this.tryLogout()
.then(() => {
console.log('LOGING OUT...');
this.$navigateTo(Login, {
clearHistory: true
});
})
.catch(() => {
this.alert("An error occured!");
});
},