南京网站制作报价,基于cms设计网站的背景意义,什么网站做展板的多,网站 手机版网站开发合同一、定义变量
data() {return {myColor:#2a9efb,};
},二、在templete中激活 说明#xff1a;这里其实类似于设置 document.documentElement.style.setProperty(--myColor, myColor),而我们现在只是给div设置了变量属性#xff0c;并且是在当前页面设置的#x…一、定义变量
data() {return {myColor:#2a9efb,};
},二、在templete中激活 说明这里其实类似于设置 document.documentElement.style.setProperty(--myColor, myColor),而我们现在只是给div设置了变量属性并且是在当前页面设置的所以可以在style中直接通过动态样式的方式定义 templatediv classchat-message :style{--myColor:myColor}测试数据/div
/template
三、在css中使用
.chat-message {background: var(--myColor);
}