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