feat(app): 更新默认页面过渡动画为zoom-out

- 将默认页面过渡动画从fade-slide改为zoom-out
- 同步更新重置设置时的动画配置
- 提升页面切换的视觉效果和流畅度
This commit is contained in:
Leo 2025-07-08 22:49:29 +08:00
parent 28faeb959d
commit 87cee481ad

View File

@ -35,7 +35,7 @@ export const useAppStore = defineStore('app-store', {
showBreadcrumb: true, showBreadcrumb: true,
showBreadcrumbIcon: true, showBreadcrumbIcon: true,
showSetting: false, showSetting: false,
transitionAnimation: 'fade-slide' as TransitionAnimation, transitionAnimation: 'zoom-out' as TransitionAnimation,
layoutMode: 'leftMenu' as LayoutMode, layoutMode: 'leftMenu' as LayoutMode,
contentFullScreen: false, contentFullScreen: false,
} }
@ -66,7 +66,7 @@ export const useAppStore = defineStore('app-store', {
this.showBreadcrumb = true this.showBreadcrumb = true
this.showBreadcrumbIcon = true this.showBreadcrumbIcon = true
this.showWatermark = false this.showWatermark = false
this.transitionAnimation = 'fade-slide' this.transitionAnimation = 'zoom-out'
this.layoutMode = 'leftMenu' this.layoutMode = 'leftMenu'
this.contentFullScreen = false this.contentFullScreen = false