-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Description
- I have searched the issues of this repository and believe that this is not a duplicate.
Version
1.3.9
Environment
浏览器版本
Reproduction link
Steps to reproduce
bug视图
代码如下
1.components组件库
<a-form-item
v-for="(item,index) of widgetFormInfo"
:key="index"
:label="item.name"
:label-col="item.l"
:wrapper-col="item.w"
>
<form-storage :config="item" v-model="formData[item.fields]"></form-storage>
</a-form-item>2.data数据
widgetFormInfo
widgetFormInfo: [
{
type: "textArea", name: "是否必填:", fields: "lylx",
l: {span: 4},
w: {span: 20},
},
]3.form-storage组件库
<a-textarea
v-if="config.type=='textArea'"
v-model="val"
:disabled="config.disabled || false"
:defaultValue="config.defaultValue"
:placeholder="config.placeholder"
/>What is expected?
不穿过下方元素
What is actually happening?
test
都有

