[编辑] -> Playground Link
我正在使用NativeScript和Vue创建一个应用程序。加载后,我想显示一个登录页面,或者如果用户以前已经登录过,请浏览其他地方。 我的页面已加载,但无法导航到登录页面。这是在IOS模拟器中运行的。
<template>
<Page>
<RadSideDrawer ref="drawer" showOverNavigation="true">
<StackLayout ~drawerContent backgroundColor="#ffffff">
<Label class="drawer-header" text="Drawer"/>
<Label class="drawer-item" text="Static 1"/>
<Label class="drawer-item" text="Static 2"/>
<Label class="drawer-item" text="Static 3"/>
</StackLayout>
<Frame ~mainContent>
<Page> <!-- test to see if mainContent navigates -->
<TextField class="input" hint="Email" keyboardType="email" autocorrect="false" autocapitalizationType="none" v-model="user.email"
returnKeyType="next" fontSize="18" />
</Page>
</Frame>
</RadSideDrawer>
</Page>
</template>
<script>
import homePage from './HomePage'
import loginPage from './LoginPage'
export default {
data() {
return {
isLoggingIn: true,
user: {
email: "foo@foo.com",
password: "foo",
confirmPassword: "foo"
}
};
},
mounted() {
this.user.email = "test@example.com", <!-- Change email to check mounted is called. It is! -->
this.$navigateTo(loginPage, { frame: "mainContent" } )
}
};
</script>
我无法弄清楚自己在做什么,也不能从源头解决。任何帮助/建议将不胜感激。
答案 0 :(得分:1)
您尚未在Frame
内为您的RadSideDrawer
设置ID。
为了使您的this.$navigateTo
代码正常工作,框架声明应该是
...
<Frame id="mainContent" ~mainContent>
...
编辑:
我已经更新了您的Playground sample。
Page
只能是Frame
的子级。因此,我不得不更新您的LoginPage.vue
或HomePage.vue
来容纳Page
。