注意如果有单位,一定要加上单位!

<image :src="product.image_src" :style="{'width':product.image_width + 'rpx'}" mode="widthFix" ></image>

如果是background-color这种属性,写成变量时用驼峰命名

<view class="inputContainer" :style="{backgroundColor:bgColor}" >
    <view class="my-search-box" :style="{borderRadius:radius+'px'}">
    </view>
</view>
export default{

        props: {
            bgColor: {
                type: String,
                default: '#C00000'
            },
            radius: {
                type: Number,
                default: 30
            }
       }

}

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐