
差异
element-ui el-button中,属性 type="text" 定义文字按钮,也是链接按钮;element-plus el-button中,改为新增属性 link 并与其它 type 值配合使用;// 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.