参数传递和重定向

参数传递

前端需要接受的参数(我们假设为id)
image
在路由中注册
image
页面传递参数

<template>
<div>
  <h1>用户列表</h1>
  {{id}}
</div>
</template>

<script>
export default {
  props:['id'],
  name: "List"
}
</script>

<style scoped>

</style>

重定向

在路由中设置重定向

 {
          path: "/gohome",
          redirect: "/main"
  }

在main页面设置跳转链接

image

posted @ 2022-02-18 19:11  小罗要有出息  阅读(45)  评论(0编辑  收藏  举报