有时在项目中需要给动态绑定style中的一些带划线( - )的属性进行赋值,这时因为字符的原因会出现编译错误
错误示范:
<view class="statusBar" :style="{margin-top: statusBarHeight}"></view>
正确示范:
<view class="statusBar" :style="{marginTop: statusBarHeight}"></view>
statusBarHeight为Vue实例中data的变量
转载于vue 用 :style动态修改带中划线的样式属性 - Ada_Blog - 博客园
感谢Ada_Blog