vue-scroll-behavior
vue-scroll-behavior copied to clipboard
Bug with routes
The plugin does not distinguish /menu/feed from /menu/messenger and so on. The position from the first route is carried over to all the others
{ path: '/menu/', component: () => import('layouts/MenuLayout'), children: [ {path: 'feed', component: () => import('pages/Tabs/Posts')}, {path: 'groups', component: () => import('pages/Tabs/Groups')}, {path: 'notifications', component: () => import('pages/Tabs/Notifications')}, {path: 'people', component: () => import('pages/Tabs/People')}, {path: 'messenger', component: () => import('pages/Tabs/Messenger')}, ] },