Skip to content

Commit 73bd25c

Browse files
committed
style: fix lint code
1 parent 7473233 commit 73bd25c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

components/_util/transition.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
TransitionGroupProps,
66
TransitionProps,
77
} from 'vue';
8-
import { nextTick, Transition as T, TransitionGroup as TG } from 'vue';
8+
import { nextTick, Transition, TransitionGroup } from 'vue';
99
import { tuple } from './type';
1010

1111
const SelectPlacements = tuple('bottomLeft', 'bottomRight', 'topLeft', 'topRight');
@@ -58,9 +58,6 @@ export const getTransitionGroupProps = (transitionName: string, opt: TransitionP
5858
return transitionProps;
5959
};
6060

61-
let Transition = T;
62-
let TransitionGroup = TG;
63-
6461
export declare type MotionEvent = (TransitionEvent | AnimationEvent) & {
6562
deadline?: boolean;
6663
};
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import demoTest from '../../../tests/shared/demoTest';
22

3-
demoTest('select');
3+
demoTest('select', { skip: 'big-data' });

0 commit comments

Comments
 (0)