1. :style 同时绑定对象与属性

<div :style="{ color :  fontColor }"> </div>

<div :style=" fontColor == '#f00' ? 'style1' : 'style2' "> </div>

<div :style="[{ color : fontColor }, fontColor == '#f00' ? 'style1' :' style2' ]"> </div>
data(){
	return {
		fontColor: '#f00'
	}
}
.style1 {background: #fff;}
.style2 {background: #0f0;}

2. 字符串拼接

:class="[ 'string' + index, 'string2' ]"

:action=" path + 'string' "
data(){
	return {
		index: 10,
		path: 'http://192.168.123.456:port'
	}
}

3. 绑定数值 与字符串数值 true则加载,false则忽略

:class="{ red : index == 2 , [ 'layout' + index ] : true }"
Logo

前往低代码交流专区

更多推荐