其他分享
首页 > 其他分享> > antdv自定义a-form-model label属性的悬浮title

antdv自定义a-form-model label属性的悬浮title

作者:互联网

<a-form-model-item  :title="名称" :label="name ">
    <a-input v-model="name" placeholder="请输入名称" />
</a-form-model-item>

一开始是想直接在item上增加title属性,发现没有生效

<a-form-model-item>
    <span slot="label" :title="名称">{{ name }}</span>
    <a-input v-model="name" placeholder="请输入名称" />
</a-form-model-item>

这样就可以啦~

标签:antdv,自定义,form,title,label,属性
来源: https://blog.csdn.net/weixin_45631278/article/details/122511804