兰宝车间质量管理系统-前端
LiuHao
2023-04-02 457b4434045e6eb9940052c7cba7b9e6c284bfb4
fix animation and router type
已修改2个文件
16 ■■■■ 文件已修改
src/animate.ts 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/types/router.d.ts 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/animate.ts
@@ -21,22 +21,22 @@
    animatePrefix + 'animate__lightSpeedIn'
];
// 关闭随机动画后的默认效果
const defaultAnimate = animatePrefix + 'animate__bounceIn';
const defaultAnimate = animatePrefix + 'animate__fadeIn';
// 搜索隐藏显示动画
const searchAnimate = {
    enter: animatePrefix + 'animate__flipInX',
    leave: animatePrefix + 'animate__bounceOut'
    enter: '',
    leave: ''
};
// 菜单搜索动画
const menuSearchAnimate = {
    enter: animatePrefix + 'animate__fadeInLeft',
    leave: animatePrefix + 'animate__fadeOutLeft'
    enter: animatePrefix + 'animate__fadeIn',
    leave: animatePrefix + 'animate__fadeOut'
};
// logo动画
const logoAnimate = {
    enter: animatePrefix + 'animate__bounceIn',
    leave: animatePrefix + 'animate__bounceOut'
    enter: animatePrefix + 'animate__fadeIn',
    leave: animatePrefix + 'animate__fadeOut'
};
export default {
src/types/router.d.ts
@@ -11,7 +11,7 @@
        parentPath?: string;
        meta?: {
            title: string;
            icon?: string;
            icon: string;
        };
    } & RouteRecordRaw;