mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
35 lines
758 B
Vue
35 lines
758 B
Vue
<template>
|
|
<div class="demo-progress">
|
|
<el-progress :percentage="50" :indeterminate="true" />
|
|
<el-progress :percentage="100" :format="format" :indeterminate="true" />
|
|
<el-progress
|
|
:percentage="100"
|
|
status="success"
|
|
:indeterminate="true"
|
|
:duration="5"
|
|
/>
|
|
<el-progress
|
|
:percentage="100"
|
|
status="warning"
|
|
:indeterminate="true"
|
|
:duration="1"
|
|
/>
|
|
<el-progress :percentage="50" status="exception" :indeterminate="true" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
const format = (percentage) =>
|
|
percentage === 100 ? 'Full' : `${percentage}%`
|
|
|
|
return {
|
|
format,
|
|
}
|
|
},
|
|
})
|
|
</script>
|