mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
26 lines
490 B
Markdown
26 lines
490 B
Markdown
<cn>
|
|
#### 自定义文字格式
|
|
`format` 属性指定格式。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Custom text format
|
|
You can custom text format by setting `format`.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div>
|
|
<a-progress type="circle" :percent="75" :format="percent => `${percent} Days`"/>
|
|
<a-progress type="circle" :percent="100" :format="() => 'Done'" />
|
|
</div>
|
|
</template>
|
|
<style scoped>
|
|
div.ant-progress-circle,
|
|
div.ant-progress-line {
|
|
margin-right: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
</style>
|
|
```
|