简单记录几种写法

  • <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>

posted on 2023-01-18 22:17  海若有因8023  阅读(60)  评论(0)    收藏  举报