配置针对vue文件eslint

This commit is contained in:
2023-03-17 14:40:04 +08:00
parent 884641abbf
commit 8053360878
16 changed files with 1282 additions and 841 deletions

View File

@@ -9,8 +9,11 @@
-->
<template>
<div class="complete-rate-wrapper">
<el-progress type="circle" :percentage="ui.percentage">
<template #default="{ percentage }">
<el-progress
type="circle"
:percentage="ui.percentage"
>
<template #default>
<span class="percentage-label">{{ ui.indicator }}</span>
<span class="percentage-value">{{ percentage }}%</span>
</template>
@@ -26,6 +29,7 @@ export default {
percentage: {
type: String,
require: true,
default:()=>"0",
},
indicator: {
type: String,