這篇文章給大家分享的是有關vue中命名視圖的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)公司IDC提供業(yè)務:綿陽電信機房機柜租用,成都服務器租用,綿陽電信機房機柜租用,重慶服務器租用等四川省內主機托管與主機租用業(yè)務;數(shù)據(jù)中心含:雙線機房,BGP機房,電信機房,移動機房,聯(lián)通機房。
在views 創(chuàng)建 UserProfile.vue UserProfilePreview.vue
文件
app.vue文件創(chuàng)建兩個router-view :
兩個router-link
Home |profile |
在router.js
import Vue from 'vue'
import Router from 'vue-router'
import Home from './views/Home.vue'
import UserProfile from './views/UserProfile.vue'
import UserProfilePreview from './views/UserProfilePreview.vue'
Vue.use(Router)
export default new Router({
mode: 'history',
base: process.env.BASE_URL,
routes: [
{ path: '/', name: 'home', component: Home }, { path: '/profile', name: 'profile', components: { default: UserProfile, helper: UserProfilePreview } }
]
})
當在瀏覽器窗口訪問我們的命名視圖時候
和
分別展示了對應的組件
總結:命名視圖優(yōu)點在于一個頁面中相當于多個窗口,這些窗口我們可以根據(jù)
Home |profile |的不同來展示不同的視圖
感謝各位的閱讀!關于“vue中命名視圖的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!