vue-scroll-behavior icon indicating copy to clipboard operation
vue-scroll-behavior copied to clipboard

Bug with routes

Open MaYoRr opened this issue 3 years ago • 0 comments

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')}, ] },

MaYoRr avatar Aug 09 '21 08:08 MaYoRr