1. props接收测值参数
props: { strokeColorBg: { type: String, default: '' } },
2. 在元素身上接收一下
<a-progress :percent="30" class="progress" :style="{ '--card-strokeColorBg': strokeColorBg }" />
3. 在css中使用动态参数
.progress {/deep/ .ant-progress-inner { background-color: var(--card-strokeColorBg); } }
标签:样式,props,外部,progress,strokeColorBg,动态,css From: https://www.cnblogs.com/hwy6/p/16935805.html