uniapp跳同级页面
时间: 2024-05-19 13:09:50 浏览: 84
uni-app聊天页面
在uni-app中,跳转到同级页面可以使用uni.navigateTo API。以下是具体步骤:
1. 在跳转前,需要先导入需要跳转到的页面,可以在需要跳转的页面的script标签中使用import导入。
2. 在需要触发跳转的事件中,调用uni.navigateTo API,并传入目标页面的路径。
下面是一个示例代码:
```
<template>
<button @click="jump">跳转到同级页面</button>
</template>
<script>
import targetPage from './targetPage.vue'
export default {
methods: {
jump() {
uni.navigateTo({
url: './targetPage.vue'
})
}
}
}
</script>
```
注意,这里传入的路径是相对于当前页面的路径。如果需要跳转到其他目录下的页面,则需要使用../或者/等符号来表示路径。
阅读全文