Vue 路由 · Vue.js教程

Vue 路由 · Vue.js教程,第1张

Vue 路由 · Vue.js教程
官方路由

对于大多数单页面应用,都推荐使用官方支持的vue-router库。更多细节可以看vue-router文档。

从零开始简单的路由

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

const NotFound = { template: '

Page not found

' } const Home = { template: '

home page

' } const about = { template: '

about page

' } 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的复杂示例 。

原文: http://vuejs.org/guide/routing.html

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/3012966.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-28
下一篇 2022-09-28

发表评论

登录后才能评论

评论列表(0条)

保存