Vue.js 路由
阿新 • • 發佈:2018-11-25
官方路由
對於大多數單頁面應用,都推薦使用官方支援的 vue-router 庫。更多細節可以看 vue-router 文件。
從零開始簡單的路由
如果只需要非常簡單的路由而不需要引入整個路由庫,可以動態渲染一個頁面級的元件像這樣:
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) } }) |
結合 HTML5 History API,你可以建立一個非常基本但功能齊全的客戶端路由器。可以直接看例項應用
整合第三方路由
如果有非常喜歡的第三方路由,如 Page.js 或者 Director,整合很簡單。這有個用了 Page.js 的複雜示例。