index.js 486 B

12345678910111213141516171819202122
  1. import { VantComponent } from '../common/component';
  2. import { BLUE } from '../common/color';
  3. VantComponent({
  4. props: {
  5. inactive: Boolean,
  6. percentage: Number,
  7. pivotText: String,
  8. pivotColor: String,
  9. showPivot: {
  10. type: Boolean,
  11. value: true
  12. },
  13. color: {
  14. type: String,
  15. value: BLUE
  16. },
  17. textColor: {
  18. type: String,
  19. value: '#fff'
  20. }
  21. }
  22. });