一、定义变量
data() {
return {
myColor:"#2a9efb",
};
},
二、在templete中激活
<template>
<div class="chat-message" :style="{'--myColor':myColor}">
测试数据
</div>
</template>
三、在css中使用
.chat-message {
background: var(--myColor);
}
OCR图片矫正、表格检测及裁剪综合实践
阅读 32
2024-08-04
data() {
return {
myColor:"#2a9efb",
};
},
<template>
<div class="chat-message" :style="{'--myColor':myColor}">
测试数据
</div>
</template>
.chat-message {
background: var(--myColor);
}
相关推荐
精彩评论(0)