index.js 226 B

1234567891011
  1. import { VantComponent } from '../common/component';
  2. import { transition } from '../mixins/transition';
  3. VantComponent({
  4. mixins: [transition(true)],
  5. props: {
  6. name: {
  7. type: String,
  8. value: 'fade'
  9. }
  10. }
  11. });