index.js 306 Bytes
Newer Older
李嘉林 committed
1 2 3
import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition';
VantComponent({
程默 committed
4 5 6 7 8 9 10 11 12
  classes: [
    'enter-class',
    'enter-active-class',
    'enter-to-class',
    'leave-class',
    'leave-active-class',
    'leave-to-class',
  ],
  mixins: [transition(true)],
李嘉林 committed
13
});