這篇文章給大家分享的是有關vue-router中命名路由和命名視圖的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
一、概述
給路由定義不同的名字,根據名字進行匹配
給不同的router-view定義名字,router-link通過名字進行對應組件的渲染。
二、代碼展示:
目錄視圖
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>
感謝各位的閱讀!關于“vue-router中命名路由和命名視圖的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。