Vue.js 2.0 路由

2022-01-28 15:33 更新

Vue.js 2.0 官方路由

對于大多數(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ù)雜示例。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號