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>