时间:2021-05-25
说明:vue-router的几个文章中例子是连贯的,因此对哪块有疑问请翻阅按发表时间排序的其他文章。
一、概述
二、代码展示:
目录视图
1、命名路由
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>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
前言:前面我们把动态路由、嵌套路由等讲完了,说道完命名路由和命名视图,vue-router的基本使用方法就算是完篇了,还想仔细探究的同学可以去官网翻阅,加深理解
1.在main.js中导入vue-router和组件importVueRouterfrom'vue-router';//导入vue-router并将它命名为Vu
在用vue-router路由处理一些需求的时候例如有时需要同时同级展示多个组件而不是嵌套展示例如:创建一个布局有侧导航和主内容两个视图此时命名视图就派上用场了在
vue-router路由基础的详解今天我总结了一下vue-route基础,vue官方推荐的路由。一、起步HTML简单路由GotofooGotobar//渲染出口
一、安装1、安装路由vue-router:npminstallvue-routervue项目的依赖文件node_modules存在vue-router依赖,说明