index.js 615 B

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var component_1 = require('../common/component');
  4. component_1.VantComponent({
  5. props: {
  6. dashed: {
  7. type: Boolean,
  8. value: false,
  9. },
  10. hairline: {
  11. type: Boolean,
  12. value: false,
  13. },
  14. contentPosition: {
  15. type: String,
  16. value: '',
  17. },
  18. fontSize: {
  19. type: Number,
  20. value: '',
  21. },
  22. borderColor: {
  23. type: String,
  24. value: '',
  25. },
  26. textColor: {
  27. type: String,
  28. value: '',
  29. },
  30. customStyle: {
  31. type: String,
  32. value: '',
  33. },
  34. },
  35. });