Element Progress 进度条文字样式实现
如图
如何插入一段漂亮的代码片
去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片
.
<el-progress
type="circle"
:width="140"
:stroke-width="15"
:format="gpuRateFormat"
class="gpuRateFormat"
:percentage="parseFloat(gpuRate < 0 ? 100 : gpuRate)"
color="#8AE7BA"
></el-progress>
gpuRateFormat(percentage){
let text = "GPU利用率";
return percentage + "%\n" ;
}
::v-deep .gpuRateFormat .el-progress__text::after{
content: "GPU利用率";
font-size: 12px;
font-weight: 400;
color: #9C9AB3;
}