跳转指定页面

引入

<template>
  <button @click="toRouter(name, params, query)">click</button>
</template>

<script setup>
import { toRouter } from "@/hooks";
</script>
1
2
3
4
5
6
7

参数

参数说明类型默认值
name跳转路由的名字string-
params传递的 params 参数object-
query传递的 query 参数object-

注意

如果使用 query 传参则需要在接收参数时使用 JSON.parse(route.query.data) 来接收参数。这样做的目的是为了避免参数的数字类型被浏览器格式化为字符串类型。