index.js 664 B

123456789101112131415161718192021222324252627282930313233
  1. import { VantComponent } from '../common/component';
  2. VantComponent({
  3. props: {
  4. dashed: {
  5. type: Boolean,
  6. value: false
  7. },
  8. hairline: {
  9. type: Boolean,
  10. value: false
  11. },
  12. contentPosition: {
  13. type: String,
  14. value: ''
  15. },
  16. fontSize: {
  17. type: Number,
  18. value: ''
  19. },
  20. borderColor: {
  21. type: String,
  22. value: ''
  23. },
  24. textColor: {
  25. type: String,
  26. value: ''
  27. },
  28. customStyle: {
  29. type: String,
  30. value: ''
  31. }
  32. }
  33. });