久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術(shù)文章
文章詳情頁

vue3頁面跳轉(zhuǎn)的兩種方式

瀏覽:166日期:2022-06-09 17:03:58
目錄
  • 1、標(biāo)簽內(nèi) router-link跳轉(zhuǎn)
  • 2、編程式路由導(dǎo)航

vue3的頁面跳轉(zhuǎn)有兩種方式,第一種是標(biāo)簽內(nèi)跳轉(zhuǎn),第二種是編程式路由導(dǎo)航

1、
<router-link to="/testDemo">
 <button>點(diǎn)擊跳轉(zhuǎn)1</button>
</router-link>
2、router.push("/testDemo");

1、標(biāo)簽內(nèi) router-link跳轉(zhuǎn)

通常用于點(diǎn)擊 查看 按鈕,跳轉(zhuǎn)到其他頁面

// 1、不帶參數(shù)直接跳轉(zhuǎn)
<router-link to="/testDemo">
 <button>點(diǎn)擊跳轉(zhuǎn)1</button>
</router-link>
<router-link :to="{name:"testDemo"}"> 
<router-link :to="{path:"/testDemo"}"> //name,path都行, 建議用name 
// 2、帶參數(shù)跳轉(zhuǎn)
// (1)query參數(shù)
<router-link :to="{path:"testDemo",query:{id:001}}">
 <button>點(diǎn)擊跳轉(zhuǎn)2</button>
</router-link>
// 類似類似get,url后面會顯示參數(shù)
// 路由可不配置
// (2)params參數(shù)
<router-link :to="{name:"testDemo",params:{setid:002}}">
 <button>點(diǎn)擊跳轉(zhuǎn)3</button>
</router-link>
// 類似post
// 路由配置 path: "/home/:id" 或者 path: "/home:id"

2、編程式路由導(dǎo)航

import { useRouter } from "vue-router";
const router = useRouter();
//直接跳轉(zhuǎn)
const handleChange = () => {
  router.push("/testDemo");
};
 //帶參數(shù)跳轉(zhuǎn)
router.push({path:"/testDemo",query:{id:003}});
router.push({name:"testDemo",params:{id:004}});

到此這篇關(guān)于vue3頁面跳轉(zhuǎn)的文章就介紹到這了,更多相關(guān)vue3頁面跳轉(zhuǎn)內(nèi)容請搜索以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持!

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 嘉峪关市| 天台县| 河东区| 云安县| 惠来县| 萍乡市| 平陆县| 阜阳市| 磐安县| 泗洪县| 博野县| 温州市| 天柱县| 天全县| 郓城县| 克拉玛依市| 浦江县| 宝应县| 林芝县| 广汉市| 安吉县| 耿马| 辽宁省| 陇南市| 宁蒗| 绵阳市| 图木舒克市| 吴桥县| 天镇县| 杨浦区| 通江县| 山阴县| 长子县| 枣庄市| 和林格尔县| 前郭尔| 武城县| 阳朔县| 大方县| 会理县| 塔河县|