23.Vue-router参数传递

1.新建profile.vue页面

2.index.js页面懒加载形式导入,配置路由映射表挂载

const Profile =()=> import('../components/Profile.vue')
 {
    path:'/profile',
    component:Profile
  }

3.App.vue添加标签占位

 <router-link to="/profile">档案</router-link>
posted @ 2021-07-01 13:55  ajaXJson  阅读(25)  评论(0编辑  收藏  举报