mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
disable animation in some page
This commit is contained in:
+16
-4
@@ -105,22 +105,34 @@ const routes = [
|
||||
{
|
||||
path: '/',
|
||||
component: HomePage,
|
||||
beforeEnter: checkLogin
|
||||
beforeEnter: checkLogin,
|
||||
options: {
|
||||
animate: false,
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/login',
|
||||
component: LoginPage,
|
||||
beforeEnter: checkNotLogin
|
||||
beforeEnter: checkNotLogin,
|
||||
options: {
|
||||
animate: false,
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/signup',
|
||||
component: SignUpPage,
|
||||
beforeEnter: checkNotLogin
|
||||
beforeEnter: checkNotLogin,
|
||||
options: {
|
||||
animate: false,
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/unlock',
|
||||
component: UnlockPage,
|
||||
beforeEnter: checkLocked
|
||||
beforeEnter: checkLocked,
|
||||
options: {
|
||||
animate: false,
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/transaction/details',
|
||||
|
||||
Reference in New Issue
Block a user