index.js 339 B

1234567891011121314151617
  1. import { VantComponent } from '../common/component';
  2. VantComponent({
  3. relation: {
  4. name: 'index-bar',
  5. type: 'ancestor',
  6. current: 'index-anchor',
  7. },
  8. props: {
  9. useSlot: Boolean,
  10. index: null
  11. },
  12. data: {
  13. active: false,
  14. wrapperStyle: '',
  15. anchorStyle: ''
  16. }
  17. });