需求
要实现这样子的 将进度条里显示的文字 后的 %
去掉
主要用到 format
方法
代码
commonlisp
<el-progress :text-inside="true"
:stroke-width="30"
:format="format"
:percentage="usageA">
</el-progress>
javascript
methods: {
format(percentage) {
return percentage ? `${percentage}` : `${percentage}`;
},
}