
差异
element-uiel-button中,属性type="text"定义文字按钮,也是链接按钮;element-plusel-button中,改为新增属性link并与其它type值配合使用;
html
// element-ui
<el-button type="text">文字按钮</el-button>
// element-plus
<el-button type="" link>plain 文字按钮</el-button>
<el-button type="success" link>success 文字按钮</el-button>
<el-button type="info" link>info 文字按钮</el-button>
<el-button type="warning" link>warning 文字按钮</el-button>
<el-button type="danger" link>danger 文字按钮</el-button>
控制台警告
当使用 type="text" 时控制台警告:
type.text is about to be deprecated in version 3.0.0, please use link instead.