欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解vue-router 命名路由和命名视图

程序员文章站 2023-11-11 19:18:34
说明:vue-router的几个文章中例子是连贯的,因此对哪块有疑问请翻阅按发表时间排序的其他文章。 一、概述 给路由定义不同的名字,根据名字进行匹配...

说明:vue-router的几个文章中例子是连贯的,因此对哪块有疑问请翻阅按发表时间排序的其他文章。

一、概述

  1. 给路由定义不同的名字,根据名字进行匹配
  2. 给不同的router-view定义名字,router-link通过名字进行对应组件的渲染。

二、代码展示:

目录视图

详解vue-router 命名路由和命名视图

1、命名路由

详解vue-router 命名路由和命名视图 

2、命名视图

index.js

import vue from 'vue'
import router from 'vue-router'
import goodlists from '@/goodlists/goods'
import title from '@/goodlists/title'
import img from '@/goodlists/img'
import cart from '@/goodlists/cart'
vue.use(router)
export default new router({
 routes: [
 {
 path: '/goods',
 name: 'goodlists',
 components:{
 default:goodlists,
 title:title,
 image:img,
 } 
 } 
 ]
})

app.vue

<template>
 <div id="app">
 <img src="./assets/logo.png">
 <router-view></router-view>
 <router-view name="title" class="left"></router-view>
 <router-view name="image" class="right"></router-view>
 </div>
</template>

<script>
export default {
 name: 'app'
}
</script>

<style>
#app {
 font-family: 'avenir', helvetica, arial, sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 text-align: center;
 color: #2c3e50;
 margin-top: 60px;
}
.left,.right{
 float: left;
 width:48%;
 text-align: center;
 border:1px solid red
}
</style>

详解vue-router 命名路由和命名视图

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