VUE在Return中定义变量,放在方法中使用
Return中定义CSS变量
在Return 中定义一个比变量
data () {
return {
'--mg_top1':'3vh',
},
}
在methods方法使用
this.$el.style.setProperty('--mg_top1', '3.6vh')
在CSS中使用
.mg_top{
margin-top: var(--mg_top1)!important;
}