naive-ui/demo/documentation/components/progress/enUS/customIndicator.md

17 lines
294 B
Markdown
Raw Normal View History

2019-10-18 16:45:40 +08:00
# Custom Indicator
2020-02-01 00:47:07 +08:00
You can custom the indicator.
2019-10-18 16:45:40 +08:00
```html
<n-progress
type="circle"
:percentage="20"
>
2020-02-01 00:47:07 +08:00
<span style="text-align: center;">20% is small</span>
2019-10-18 16:45:40 +08:00
</n-progress>
<n-progress
type="line"
status="success"
:percentage="20"
>
2020-02-01 00:47:07 +08:00
Don't put too much content here.
2019-10-18 16:45:40 +08:00
</n-progress>
```