naive-ui/demo/documentation/components/progress/zhCN/noIndicator.md

23 lines
405 B
Markdown
Raw Normal View History

2020-02-04 14:23:39 +08:00
# 不要指示标
不要也可以。
```html
<n-progress
style="margin: 0 8px 12px 0;"
type="circle"
:show-indicator="false"
status="success"
:percentage="20"
/>
<n-progress
style="width: 120px; margin: 0 8px 12px 0;"
type="multiple-circle"
:percentage="[50, 25]"
:show-indicator="false"
/>
<n-progress
type="line"
:show-indicator="false"
status="success"
:percentage="20"
/>
```