Skip to content

Vue-router 使用

Vue 路由模式

如 nginx 配置

js
location / {
  try_files $uri $uri/ /index.html;
}

Vue-router 路由配置

  • 动态路由 {path:'/user/:id',component:user}
  • 懒加载 component:()=>import('./Router')

基于 MIT 许可发布