navigator

<template>
<view class="">
<navigator url="/pages/demo/image" open-type="reLaunch">
文字跳转写法,open-type是relanuch的时候会把跳过去的页面当初主页,左上角没有返回箭头
</navigator>
</view>
图片路由跳转写法
<navigator url="/pages/demo/image">
<image src="/static/logo.png" mode=""></image>
</navigator>

<navigator target="miniProgram" url="对应小程序的路径" app-id=对应小程序的appid""></navigator>
</template>

<script setup>

</script>

 navigator不可以直接跳转到tabBar定义过的页面,需要加上open-type=“relauch”才可以进行跳转

posted on 2025-02-27 18:26  ChoZ  阅读(7)  评论(0)    收藏  举报

导航