如题,首先,正确为微信小程序标签添加行内样式,其做法是:(以view为例)
<view style="width: 400rpx; height: 400rpx; background-color: green;">goods_list</view>
也就是说,直接像写css一样直接写在双引号内就行了,无需考虑background-color要不要写成驼峰形式、400rpx要不要加上引号等等,因为vue里添加样式 是 :style="{…}"绑定,以为小程序也是这样,摸索了好一会儿。
同理,对于uni-app的扩展组件uni-ui,传入的customStyle也是直接像微信小程序的style里一样,直接传入css写法的字符串即可,以 uni-tag组件的customStyle为例:
<uni-tag :customStyle="tagStyle"></uni-tag>
<script>
export default {
data () {
return {
tagStyle: "background-color: blue;"
}
}
}
</script>
因为之前vue传入样式都是传入一个对象,这里摸索了好久,记录一下。