vue3的页面跳转有两种方式,第一种是标签内跳转,第二种是编程式路由导航
1 2 3 4 | 1、 <button>点击跳转1</button> 2、router.push( "/testDemo" ); |
1、标签内 router-link跳转
通常用于点击 查看 按钮,跳转到其他页面
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | // 1、不带参数直接跳转 <button>点击跳转1</button> //name,path都行, 建议用name // 2、带参数跳转 // (1)query参数 <button>点击跳转2</button> // 类似类似get,url后面会显示参数 // 路由可不配置 // (2)params参数 <button>点击跳转3</button> // 类似post // 路由配置 path: "/home/:id" 或者 path: "/home:id" |
2、编程式路由导航
1 2 3 4 5 6 7 8 9 | import { useRouter } from "vue-router" ; const router = useRouter(); //直接跳转 const handleChange = () => { router.push( "/testDemo" ); }; //带参数跳转 router.push({path: '/testDemo' ,query:{id:003}}); router.push({name: 'testDemo' ,params:{id:004}}); |
到此这篇关于vue3页面跳转的文章就介绍到这了,更多相关vue3页面跳转内容请搜索IT俱乐部以前的文章或继续浏览下面的相关文章希望大家以后多多支持IT俱乐部!