5.1 路由
优质
小牛编辑
124浏览
2023-12-01
官方路由
对于大多数单页面应用,都推荐使用官方支持的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,你可以建立一个非常基本但功能齐全的客户端路由器。可以直接看实例应用