模板抽离
我们已经学习过了Vue模板的另外定义形式,使用。
<template id="news">
新闻
3.定义路由
注意我们在home路由配置了它的children。这就是嵌套路由。
4.案例全部代码如下:
<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">
<script type="text/javascript">
// 1. 定义(路由)组件。
const Home = { template: '#home' };
const News = { template: '#news' };
const Login = { template: '#login' };
const Reg = { template: '#reg' };
// 2. 定义路由
const routes = [
{ path: '/',component: News}
]
// 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>')
// 现在,应用已经启动了!