Skip to content

Commit

Permalink
fix(components): properly type transition prop
Browse files Browse the repository at this point in the history
  • Loading branch information
LeBenLeBen committed Nov 20, 2022
1 parent b11ef97 commit 2e15ca6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/chusho/lib/components/mixins/transitionMixin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BaseTransitionProps, PropType, defineComponent } from 'vue';
import { PropType, TransitionProps, defineComponent } from 'vue';

export default defineComponent({
props: {
Expand All @@ -10,7 +10,7 @@ export default defineComponent({
* If you defined a default transition in the config and want to disable it, use `false`.
*/
transition: {
type: [Object, Boolean] as PropType<BaseTransitionProps | false>,
type: [Object, Boolean] as PropType<TransitionProps | false>,
default: null,
},
},
Expand Down

0 comments on commit 2e15ca6

Please sign in to comment.