poetries.github.io icon indicating copy to clipboard operation
poetries.github.io copied to clipboard

Vue多页路由与模板解析 | Poetry's Blog

Open poetries opened this issue 6 years ago • 0 comments

http://blog.poetries.top/2019/06/01/vue-router-and-template-analyse/

一、路由配置1. 跳转 在配置路由前,首先我们要明确一点就是,多页应用中的每个单页都是相互隔离的,即如果你想从 page1 下的路由跳到 page2 下的路由,你无法使用 vue-router 中的方法进行跳转,需要使用原生方法:location.href 或 location.replace 此外为了能够清晰的分辨路由属于哪个单页,我们应该给每个单页路由添加前缀,比如 index 单页:/

poetries avatar Jun 08 '19 11:06 poetries