這篇文章給大家分享的是有關(guān)vue中命名視圖的示例分析的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),海州企業(yè)網(wǎng)站建設(shè),海州品牌網(wǎng)站建設(shè),網(wǎng)站定制,海州網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,海州網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。在views 創(chuàng)建 UserProfile.vue UserProfilePreview.vue
文件
app.vue文件創(chuàng)建兩個(gè)router-view :
兩個(gè)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 } }
]
})
當(dāng)在瀏覽器窗口訪問我們的命名視圖時(shí)候
和
分別展示了對應(yīng)的組件
總結(jié):命名視圖優(yōu)點(diǎn)在于一個(gè)頁面中相當(dāng)于多個(gè)窗口,這些窗口我們可以根據(jù)
Home |profile |的不同來展示不同的視圖
感謝各位的閱讀!關(guān)于“vue中命名視圖的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!