路由传参数。在很多时候我们需要路由上面传递参数,比如新闻列表页,我们需要传递新闻ID,给新闻详细页。
1.新闻列表页模板
rush:xhtml;">
<template id="home">
<div>
<h2><a href="https://www.jb51.cc/tag/shouye/" target="_blank" class="keywords">首页</a></h2>
<router-link to="/home/login"><a href="https://www.jb51.cc/tag/denglu/" target="_blank" class="keywords">登录</a></router-link>
<router-link to="/home/reg"><a href="https://www.jb51.cc/tag/zhuce/" target="_blank" class="keywords">注册</a></router-link>
<!-- 路由匹配到的组件将渲染在这里 -->
<router-view></router-view>
</div>
<template id="news">
<template id="login">
<template id="NewsDetail">
<script type="text/javascript">
// 1. 定义(路由)组件。
const Home = { template: '#home' };
const News = { template: '#news' };
const Login = { template: '#login' };
const Reg = { template: '#reg' };
//新闻详细页组件
const NewsDetail = { template: '#NewsDetail' };
// 2. 定义路由
const routes = [
{ path: '/',redirect: '/home' },{
path: '/home',component: Home,children:[
{ path: '/home/login',component: Login},{ path: '/home/reg',component: Reg}
]
},{ path: '/news',component: News,},{ path: '/news/:id',]
// 3. 创建 router 实例,然后传 `routes` 配置
const router = new VueRouter({
routes // (缩写)相当于 routes: routes
})
// 4. 创建和挂载根实例。
// 记得要通过 router 配置参数注入路由,
// 从而让整个应用都有路由<a href="https://www.jb51.cc/tag/gongneng/" target="_blank" class="keywords">功能</a>
const app = new Vue({
router
}).$mount('#<a href="https://www.jb51.cc/tag/Box/" target="_blank" class="keywords">Box</a>')
// 现在,应用已经启动了!