naive-ui/demo/documentation/components/progress/enUS/customIndicator.md
2020-02-01 00:47:07 +08:00

294 B

Custom Indicator

You can custom the indicator.

<n-progress
  type="circle"
  :percentage="20"
>
  <span style="text-align: center;">20% is small</span>
</n-progress>
<n-progress
  type="line"
  status="success"
  :percentage="20"
>
  Don't put too much content here.
</n-progress>