2020-08-27 17:18:57 +08:00

16 lines
389 B
Markdown

```html
<template>
<Process-circle :percent="100" stroke-color="#00cc66" >
<Icon type="check" size="50" color="#00cc66"></Icon>
</Process-circle>
<Process-circle :percent="80" stroke-type="square" :stroke-width="4" :trail-width="3">
<Icon type="download" size="50" color="#3399ff"></Icon>
</Process-circle>
</template>
<script>
export default{
}
</script>
```