vue element-ui更新版本后,警告[Element Migrating][ElDialog][Attribute]: size is removed.
Posted 无底深渊。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue element-ui更新版本后,警告[Element Migrating][ElDialog][Attribute]: size is removed.相关的知识,希望对你有一定的参考价值。
element-ui更新版本后Icon的变化
原来在input组件中可以用icon这个属性指定icon
<el-input
placeholder="请输入用户名"
icon="search"
v-model="input"
:on-icon-click="handleIconClick">
</el-input>
现在新版element-ui这样写是不生效的:
可以通过prefix-icon 和 suffix-icon 属性在 input 组件的首部和尾部增加显示图标,也可以通过 slot 来放置图标。
<el-input
placeholder="请输入用户名"
suffix-icon="search"
v-model="input"
:on-icon-click="handleIconClick">
</el-input>
以上是关于vue element-ui更新版本后,警告[Element Migrating][ElDialog][Attribute]: size is removed.的主要内容,如果未能解决你的问题,请参考以下文章
Element-ui Vue 分页器,分页值更新后,UI未显示
Vue -- element-ui el-table 点击tr项页面跳转,返回后缓存回显点击项
vue报错Unknown custom element:<el-descriptions> did you register the component