ElementPlus即将在版本 3.0.0中弃用type.text


本文讲解了ElementPlus即将在版本 3.0.0中弃用type.text警告解决方法

报错展示

ElementPlus即将在版本 3.0.0中弃用type.text

错误提示

error.ts:14 ElementPlusError: [props] [API] type.text is about to be deprecated in version 3.0.0, please use link instead.
For more detail, please visit:

ElementPlusError: [props] [API] type.text 即将在版本 3.0.0 中弃用,请改用链接。

<el-button style="float: right; padding: 3px 0" type="text" @click="exportData">一键导出数据</el-button>

将以上代码中的type的text改成primary警告就不会有了

改正

<el-button style="float: right; padding: 3px 0" type="primary" @click="exportData">一键导出数据</el-button>


扫描二维码,在手机上阅读

使用Element Plus和xlsx库实现Excel文件导入功能

安装使用pinia

评 论