W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
對于大多數(shù)單頁面應(yīng)用,都推薦使用官方支持的vue-router庫。更多細(xì)節(jié)可以看vue-router文檔。
如果只需要非常簡單的路由而不需要引入整個路由庫,可以動態(tài)渲染一個頁面級的組件像這樣:
const NotFound = { template: '<p>Page not found</p>' }
const Home = { template: '<p>home page</p>' }
const About = { template: '<p>about page</p>' }
const routes = {
'/': Home,
'/about': About
}
new Vue({
el: '#app',
data: {
currentRoute: window.location.pathname
},
computed: {
ViewComponent () {
return routes[this.currentRoute] || NotFound
}
},
render (h) { return h(this.ViewComponent) }
})
結(jié)合HTML5 History API,你可以建立一個非常基本但功能齊全的客戶端路由器??梢灾苯涌?a href="http://o2fo.com/targetlink?url=https://github.com/chrisvfritz/vue-2.0-simple-routing-example" target="_blank">實(shí)例應(yīng)用。
如果有非常喜歡的第三方路由,如Page.js或者 Director, 整合很簡單。 這有個用了Page.js的復(fù)雜示例。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: