美文网首页
vue 路由的那些事

vue 路由的那些事

作者: iOS开发小学生 | 来源:发表于2022-09-22 15:23 被阅读0次

关于vue路由东配置

import HelloWorld from '@/components/HelloWorld'
import Layout from '@/components/Layout'
、、、、、、、、分割线、、、、、、、、、、、
export default new Router({
  routes: [
    {
      //根目录的配置
      path: '/',
      name: 'HelloWorld',
      component: HelloWorld
    },
    {
      // 路径一定要写对
      path: '/Layout',
      name: 'Layout',
      component: Layout
    }
  ]
})

请注意 path: '/Layout' 的写法。避免界面跳转路径和界面对应不上。

相关文章

网友评论

      本文标题:vue 路由的那些事

      本文链接:https://www.haomeiwen.com/subject/wciwortx.html