博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue同一个页面可以有多个router-view
阅读量:5251 次
发布时间:2019-06-14

本文共 1763 字,大约阅读时间需要 5 分钟。

参考:

参考:

分别给router-view定义一个name,默认显示的可以不用定义

自己先在components文件夹内写4个组件,准备放入4个router-viewer标签,我的分别是

containerLeft.vue   
containerRight.vue  
containerTop.vue  
containerBottom.vue

 

app.vue

路由文件router/index.js

核心:

 

import Vue from 'vue'import Router from 'vue-router'import HelloWorld from '@/components/HelloWorld'import Veaflet from '@/components/Veaflet'import containerLeft from '@/components/containerLeft'import containerRight from '@/components/containerRight'import containerTop from '@/components/containerTop'import containerBottom from '@/components/containerBottom'import lefttree from '@/components/lefttree'Vue.use(Router)// 创建一个路由器实例// 并且配置路由规则const router = new Router({  routes: [    {      path: '/',      name: 'Veaflet',      meta:{title:'Veaflet'},      components:{        default: Veaflet,        left:containerLeft,        right:containerRight,        logo:containerTop,        bottom:containerBottom      }    },    {      path: '/HelloWorld',      name: 'HelloWorld',      meta:{title:'HelloWorld'},      component: HelloWorld    },    {      path: '/containerLeft',      name: 'containerLeft',      meta:{title:'containerLeft'},      component: containerLeft    },    {      path: '/lefttree',      name: 'lefttree',      meta:{title:'lefttree'},      component: lefttree    }  ]})  //修改动态网页标题 beforeEach 导航钩子,路由改变前触发  router.beforeEach((to,from,next) =>{    //window.document.title = to.meta.title;    window.document.title = to.name;    next();  })  router.afterEach((to,from,next) =>{    window.scrollTo(0,0);  })  export default router;

 运行效果如图:

 

转载于:https://www.cnblogs.com/yingyigongzi/p/10827156.html

你可能感兴趣的文章
现代程序设计 作业1
查看>>
在android开发中添加外挂字体
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
多线程实现资源共享的问题学习与总结
查看>>
Learning-Python【26】:反射及内置方法
查看>>
torch教程[1]用numpy实现三层全连接神经网络
查看>>
java实现哈弗曼树
查看>>
转:Web 测试的创作与调试技术
查看>>
python学习笔记3-列表
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
线程androidAndroid ConditionVariable的用法
查看>>
stap-prep 需要安装那些内核符号
查看>>
转载:ASP.NET Core 在 JSON 文件中配置依赖注入
查看>>
socket初识
查看>>
磁盘测试工具
查看>>
代码变量、函数命名神奇网站
查看>>
redis cli命令
查看>>
Problem B: 占点游戏
查看>>
python常用模块之sys, os, random
查看>>