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