朋友们使用vue写的网页,然后今天发现个问题,就是我在b页面刷新,他回到了a页面,a页面也是默认路由首页,正常不应该是在b页面刷新还是b页面嘛,
```html
{
path: '/', name: 'home',
meta: {
title: '首页',
}, component: () => import('./views/a/a')
},
{
path: '/medical', name: 'medical',
meta: {
title: '诊疗',
}, component: () => import('./views/b/b')
},
{
path: '/publicize', name: 'publicize',
meta: {
title: '科普',
}, component: () => import('./views/c/c')
},
```