vue中的router-view组件的使用教程

Posted xanthedsf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中的router-view组件的使用教程相关的知识,希望对你有一定的参考价值。

开发的时候有时候会遇到比如 点击这个链接跳转到其他组件的情况,氮素,我们不想跳转到新页面,只在当前页面切换着显示,那么就要涉及到路由的嵌套了,也可以说是子路由的使用。

比如我们在一个导航组件中写了三个导航链接,他们的地址分别为:/food,/rating,/seller,点击每个导航链接都会跳转到不同的组件,我们通过<router-view></router-view>

1
2
3
4
5
6
7
8
9
10
11
<template>
 <div class="navbar">
 <ul id="main">
 <li><router-link to="/food" >商品</router-link></li>
 <li><router-link to="/rating">评价</router-link></li>
 <li><router-link to="/seller">商家</router-link></li>
 </ul>
   <!-- 路由匹配到的组件将渲染在这里 -->
   <router-view></router-view>
 </div>
</template>

显示粗来的navbar就是这样的,在同个页面显示,地址栏也是变的, 我们在index这个组件引入navbar组件,头部那些不相干的logo啊基本信息可以忽略一下下

技术分享图片

那么他们的路由都是怎么配的呢,在index.js中:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  path: ‘/‘,
  name: ‘index‘,
  component: index,
  redirect:‘/food‘,
  children:[
 {
  path: ‘food‘,
  name: ‘food‘,
  component: food
 },
 {
  path: ‘seller‘,
  name: ‘seller‘,
  component: seller
 },
 {
  path: ‘rating‘,
  name: ‘rating‘,
  component: rating
 }
  ]
 },

多加张图解释一下哈

技术分享图片

上张图片注释的单词打错了,是“index”,不是“iindex”,个最后顺便附上index.vue的代码,这样好理解一点

1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
 <div class="index">
 <div class="nav"></div>
 <div class="shop-header">
 <div class="imgbox"><img src="../../static/img/56.jpg" alt="" /></div>
 <h2>黄蜀郞鸡公煲<span class="ico"></span></h2>
 <p class="info1"><span>*4.6</span><span>月售738</span><span>商家配送约44分钟</span><span>距离345m</span></p>
 <p class="info2">店内免费涮煲,(蔬菜、小料、主食、糕点、凉菜、水果、免费吃)闻香识辣,入口知麻,一锅两吃,独具特色!!!外卖米饭请自点!!评价问题商家会一一看,可能不能及时回复。有问题详询18232966036</p>
 </div>
 <navbar></navbar>
 </div>
</template>
<script>

以上是关于vue中的router-view组件的使用教程的主要内容,如果未能解决你的问题,请参考以下文章

超详细!Vue-Router手把手教程

脚手架项目默认的首页index.html。以及App.vue组件中的router-view标签,默认是渲染的哪个组件?以及这个组件是可以在路由映射文件下配置的。

router-view

Laravel VueJs:`router-view` 不渲染组件

vue之router-view组件的使用及二级路由

vue刷新当前路由 router-view中的内容