对象形式的处理方法:
:style="{ width: vueWidth+ 'px' , height: vueHeight+ 'px' }"
:style="{width:(vueWidth===vueHeight?'180px':vueWidth)}"
需要注意的地方:
1.除了变量以外的其他属性值都需要使用引号括起来,例如margin: '10px',而不是margin: 10px
2.凡是有-的属性名都要变成驼峰式,比如border-radius要变成borderRadius
:style="{ width: vueWidth+ 'px' , height: vueHeight+ 'px' }"
:style="{width:(vueWidth===vueHeight?'180px':vueWidth)}"
1.除了变量以外的其他属性值都需要使用引号括起来,例如margin: '10px',而不是margin: 10px
2.凡是有-的属性名都要变成驼峰式,比如border-radius要变成borderRadius