首页 > 其他分享 >uniapp vue2.0 动态绑定style

uniapp vue2.0 动态绑定style

时间:2023-01-18 22:35:15浏览次数:45  
标签:uniapp style 绑定 动态 写法 vue2.0

简单记录几种写法

  • <view :style="{ height: height + 'rpx' }">动态高度,固定单位</view>

  • <view :style="[{ height: height + 'rpx' }]">动态高度,固定单位,数组写法</view>

  • <view :style="[ObjectStyle]">style整体动态,type:Object,数组写法,微信小程序才能识别</view>

  • <view :style="{ borderColor:'red' }">边框颜色,驼峰写法</view>

  • <view :style="{ borderColor }">同属性变量,省略写法</view>

标签:uniapp,style,绑定,动态,写法,vue2.0
From: https://www.cnblogs.com/yanjh/p/17060768.html

相关文章