mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
fix(components): [progress] fix type error (#9894)
This commit is contained in:
parent
0088da111d
commit
f9edc9d265
@ -77,7 +77,6 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
// @ts-nocheck
|
||||
import { computed } from 'vue'
|
||||
import { ElIcon } from '@element-plus/components/icon'
|
||||
import {
|
||||
@ -97,7 +96,7 @@ defineOptions({
|
||||
name: 'ElProgress',
|
||||
})
|
||||
|
||||
const STATUS_COLOR_MAP = {
|
||||
const STATUS_COLOR_MAP: Record<string, string> = {
|
||||
success: '#13ce66',
|
||||
exception: '#ff4949',
|
||||
warning: '#e6a23c',
|
||||
|
Loading…
Reference in New Issue
Block a user