vue之router-view元件的使用
開發的時候有時候會遇到一種情況,比如 :點選這個連結跳轉到其他元件的情況,通常會跳轉到新的頁面,蛋是,我們不想跳轉到新頁面,只在當前頁面切換著顯示,那麼就要涉及到路由的巢狀了,也可以說是子路由的使用。
以餓了麼訂餐的情景來說吧,在同個頁面,切換顯示不同元件的相應內容,同時位址列的地址是會變的
怎麼實現它呢?
首先 我們在導航元件navbar.vue中寫了三個導航連結,他們對應地址分別為:/food,/rating,/seller,點選每個導航連結會跳轉到不同的元件,並且加上<router-view></router-view>這個標籤
navbar.vue:
<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>
然後,我們在index.vue引入navbar.vue:
index.vue:
<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元件在這裡引入navbar元件在這裡引入navbar元件-->
<navbar></navbar>
<!--在這裡引入navbar元件在這裡引入navbar元件在這裡引入navbar元件在這裡引入navbar元件-->
</div>
</template>
<script>
import navbar from '@/components/navbar'
import food from '@/components/food'
export default {
name: 'HelloWorld',
data() {
return {
msg:[]
}
},
components: {
navbar
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style lang="stylus">
@import '../../static/css/index.styl';
</style>
最後,路由都是怎麼配的呢,在index.js中:
{
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
}
]
},
相關文章
- Vue自定義元件之v-model的使用Vue元件
- vue元件使用Vue元件
- Vue元件之TooltipVue元件
- Vue 元件的使用語法Vue元件
- vue元件之間的通訊Vue元件
- vue 元件之間通訊eventBus使用方法Vue元件
- 【Vue】元件使用之isVue元件
- vue之元件理解(一)Vue元件
- vue之元件註冊Vue元件
- Vue子元件與父元件之間的通訊Vue元件
- vue框架之自定義元件中使用v-modelVue框架元件
- Vue核心知識-Vue的元件之render函式Vue元件函式
- Vue - 元件之間的傳值方式Vue元件
- Vue元件的基本使用方法Vue元件
- Vue之元件間傳值Vue元件
- vue元件之輪播圖的實現Vue元件
- vue元件之間的資料傳遞Vue元件
- Vue.js 元件之間的傳值Vue.js元件
- vue 元件的三種使用方式教程Vue元件
- vue元件使用的細節 is 屬性Vue元件
- Vue元件通訊中eventBus的使用Vue元件
- vue元件巢狀之 - 父元件向子元件傳值Vue元件巢狀
- Router-view 背後的想法View
- vue 兄弟元件之間傳值之busVue元件
- 第143篇:手寫vue-router,實現router-viewVueView
- Vue元件之全域性註冊Vue元件
- VUE3 之 元件傳參Vue元件
- Vue 元件化開發之插槽Vue元件化
- vue元件通訊之propsVue元件
- vue 元件中solt 插槽使用Vue元件
- vue3-cookies元件使用VueCookie元件
- Vue.js 學習筆記之七:使用現有元件Vue.js筆記元件
- vue.js使用props在父子元件之間傳參Vue.js元件
- vue-router的基本框架及寫法,router-view與router-linkVue框架View
- Vue的元件Vue元件
- vue元件之路之輪播圖的實現Vue元件
- Vue元件之間通訊的三種方式Vue元件
- Vue2---父子元件之間的訪問Vue元件