1. 原来写法

    <view :style="customStyle">测试1</view>

    这种写法渲染出的结果是:

    <view style="[object Object]">测试1</view>
  2. 修复写法

    <view :style="[customStyle]">测试1</view>