Invalid prop: type check failed for prop "labelStyle". Expected Object, got String with value "font-size:13px". found in ---> <UForm> at uview-ui/components/u-form/u-form.vue at pages/tab/quickBilling/quickBilling.vue
时间: 2024-04-16 17:27:41 浏览: 322
ERROR ITMS-90062: “This bundle is invalid. The value for key CFBundleShortVersionString [1.2] …
5星 · 资源好评率100%
根据错误提示来看,你在`UForm`组件中使用了一个名为`labelStyle`的属性,但是它期望的类型是对象(Object),而你传递给它的却是一个字符串(String)"font-size:13px"。
你需要将`labelStyle`属性的值改为一个对象,像这样:
```html
<UForm :labelStyle="{ fontSize: '13px' }">
<!-- 其他表单内容 -->
</UForm>
```
或者,你可以将`labelStyle`属性直接移除,如果不需要自定义标签样式的话。
```html
<UForm>
<!-- 其他表单内容 -->
</UForm>
```
确保按照组件的文档或要求正确使用和传递属性值。
阅读全文