vant icon indicating copy to clipboard operation
vant copied to clipboard

fix(vant-compat): [Field] Fix the false positive empty value when the value is boolean false

Open YujiaCheng1996 opened this issue 8 months ago • 0 comments

Fix the false positive empty value when the value is boolean false. 当值为布尔值的false时错误认为空值。 eg.

<van-radio-group v-model="checked">
  <van-radio :name="true">是</van-radio>
  <van-radio :name="false">否</van-radio>
</van-radio-group>

YujiaCheng1996 avatar Jun 21 '24 05:06 YujiaCheng1996