Vue 动态绑定样式(v-bind:style) 中对带划线(-)的属性赋值
有时在项目中需要给动态绑定style中的一些带划线( - )的属性进行赋值,这时因为字符的原因会出现编译错误错误示范:<view class="statusBar" :style="{margin-top: statusBarHeight}"></view>正确示范:<view class="statusBar" :style="{marginTo...
·
有时在项目中需要给动态绑定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
更多推荐
已为社区贡献1条内容
所有评论(0)