2018-09-26 19:22:56 +08:00

14 lines
229 B
TypeScript

import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition';
VantComponent({
mixins: [transition(true)],
props: {
name: {
type: String,
value: 'fade'
}
}
});