disable animation in some page

This commit is contained in:
MaysWind
2020-12-10 23:22:51 +08:00
parent f1ee6f19d0
commit a375a81c1b
+16 -4
View File
@@ -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',