如何实现页面导航?

如何实现页面导航?

阅读 548
1 个回答

在HarmonyOS应用中实现页面导航,这种场景一般应用在2个页面直接的交互。
在 config.json 中定义页面路由:

{
  "pages": [
    {
      "path": "/home",
      "component": "HomePage"
    },
    {
      "path": "/detail",
      "component": "DetailPage"
    }
  ]
}

在 HomePage 中添加导航代码:

<!-- HomePage.hml -->
<template>
  <div>
    <button @click="navigateToDetail">Go to Detail Page</button>
  </div>
</template>

<script>
export default {
  methods: {
    navigateToDetail() {
      this.$router.push({ path: '/detail' });
    }
  }
};
</script>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
logo
HarmonyOS
子站问答
访问
宣传栏