在项目开发中,需要用到路由传参的地方往往很多,比如说根据新闻列表页面查询新闻详情,此时我们就需要将该条新闻的id
信息传递给新闻详情页面。
而在vue-router
中,传参所用的关键字为query
,其后跟参数map
对象。
示例
源码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>vue-router</title>
</head>
<body>
<template id="root">
<div>
<!--路由占位-->
<router-view></router-view>
</div>
</template>
<template id="register">
<div>
<h2>注册页面</h2>
<input type="text" v-model="uname">
<button @click="registerMethod">注册</button>
</div>
</template>
<template id="login">
<div>
&l