vue-router:嵌套路由的使用方法

前端之家收集整理的这篇文章主要介绍了vue-router:嵌套路由的使用方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

模板抽离

我们已经学习过了Vue模板的另外定义形式,使用

<template id="news">

新闻

然后js里定义路由组件的时候:

路由嵌套

实际应用界面,通常由多层嵌套的组件组合而成。

比如,我们 “首页”组件中,还嵌套着 “登录”和 “注册”组件,那么URL对应就是/home/login和/home/reg。

首页

登录 注册

这是访问/home后的模板,其中我们需要把/home/login和/home/reg渲染进来。

完成上面代码后,HTML结构如下图:

这里写图片描述

登录注册2个组件

登录界面

3.定义路由

注意我们在home路由配置了它的children。这就是嵌套路由。

4.案例全部代码如下:

<Meta charset="utf-8">
Box">

<template id="home">

<div>
  <h2><a href="https://www.jb51.cc/tag/shouye/" target="_blank" class="keywords">首页</a></h2>
   <router-link to="/home/login"&gt;<a href="https://www.jb51.cc/tag/denglu/" target="_blank" class="keywords">登录</a></router-link>
  <router-link to="/home/reg"&gt;<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>')

// 现在,应用已经启动了!

这里写图片描述

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/41425.html

猜你在找的Vue相关文章