demo2.vue 622 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="demo-progress">
  3. <m-progress
  4. :text-inside="true"
  5. :stroke-width="26"
  6. :percentage="70"
  7. />
  8. <m-progress
  9. :text-inside="true"
  10. :stroke-width="24"
  11. :percentage="100"
  12. status="success"
  13. />
  14. <m-progress
  15. :text-inside="true"
  16. :stroke-width="22"
  17. :percentage="80"
  18. status="warning"
  19. />
  20. <m-progress
  21. :text-inside="true"
  22. :stroke-width="20"
  23. :percentage="50"
  24. status="error"
  25. />
  26. </div>
  27. </template>
  28. <style scoped>
  29. .demo-progress .m-progress--line {
  30. margin-bottom: 15px;
  31. width: 350px;
  32. }
  33. </style>