index.js 425 B

12345678910111213141516171819
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var component_1 = require("../common/component");
  4. component_1.VantComponent({
  5. relation: {
  6. name: 'index-bar',
  7. type: 'ancestor',
  8. current: 'index-anchor',
  9. },
  10. props: {
  11. useSlot: Boolean,
  12. index: null
  13. },
  14. data: {
  15. active: false,
  16. wrapperStyle: '',
  17. anchorStyle: ''
  18. }
  19. });