如何在 nativescript vue 中从主页导航到登录页面?

Posted

技术标签:

【中文标题】如何在 nativescript vue 中从主页导航到登录页面?【英文标题】:How to navigate from main page to login page in nativescript vue? 【发布时间】:2019-11-22 09:14:47 【问题描述】:

我想这样做,以便我可以交换 登录页面 注册页面 如果其中一个成功,那么我想去 App Page

应用内组件

logout()
    this.$navigateTo(Router["/Login"].component , 
        clearHistory: true
    ); //returns createcomment and doesnot navigate 

但是,这只会在终端中返回 createcomment

这与导航堆栈有关,但我不知道如何使它工作,因为没有这方面的文档。

当我退出 注册页面 时,它可以工作,但不能在 登录页面

logout()
    this.$navigateTo(Router["/Signup"].component , 
        clearHistory: true
    ); //navigates fine

是因为我的 main.ts 上有 LoginPage 吗??

render: h => h('frame', [h(Login)])

我正在使用带有 typescript 和 class-components 的 nativescript-vue。我也有手动路由器。正如你猜到的那样,我对 Vuejs 和 NS 都比较陌生

【问题讨论】:

您能分享一个 Playground 示例吗? @Manoj idk 如果我可以在操场上使用 Vue-property-decorator。 【参考方案1】:

Vue 路由器(不支持) 目前,不支持与 Vue Router 集成。在团队解决问题之前,请使用手动路由。 见https://nativescript-vue.org/en/docs/routing/vue-router/

【讨论】:

你必须手动路由器 我清楚地知道这一事实,我正在使用手动路由。

以上是关于如何在 nativescript vue 中从主页导航到登录页面?的主要内容,如果未能解决你的问题,请参考以下文章

恢复后有时会在 Nativescript-Vue 上显示主屏幕

如何在 Nativescript-Vue 中使用 nativescript-drawingpad?

如何在 NativeScript Vue 中设置“nativescript-stripe”

如何更改 nativescript-vue 中的 RadDataForm 样式? (Nativescript-Vue)

NativeScript-Vue:如何安装 BottomNavigation 组件

如何在 nativescript-vue 弹出窗口中使用 vue 组件?