路由

官方 Router

对于大多数单页面应用,都推荐使用官方支持的 vue-router 库路由 - 图1 (opens new window)。更多细节可以移步 vue-router 文档路由 - 图2 (opens new window)

从零开始简单的路由

如果你只需要非常简单的路由而不想引入一个功能完整的路由库,可以像这样动态渲染一个页面级的组件:

  1. const NotFoundComponent = { template: '<p>Page not found</p>' }
  2. const HomeComponent = { template: '<p>Home page</p>' }
  3. const AboutComponent = { template: '<p>About page</p>' }
  4. const routes = {
  5. '/': HomeComponent,
  6. '/about': AboutComponent
  7. }
  8. const SimpleRouter = {
  9. data: () => ({
  10. currentRoute: window.location.pathname
  11. }),
  12. computed: {
  13. CurrentComponent() {
  14. return routes[this.currentRoute] || NotFoundComponent
  15. }
  16. },
  17. render() {
  18. return Vue.h(this.CurrentComponent)
  19. }
  20. }
  21. Vue.createApp(SimpleRouter).mount('#app')

结合 HTML5 History API路由 - 图3 (opens new window),你可以建立一个麻雀虽小但是五脏俱全的客户端路由器。可以直接看实例应用路由 - 图4 (opens new window)

整合第三方路由

如果你有更偏爱的第三方路由,如 Page.js路由 - 图5 (opens new window) 或者 Director路由 - 图6 (opens new window),整合起来也一样简单路由 - 图7 (opens new window)。这里有一个使用了 Page.js 的完整示例路由 - 图8 (opens new window)