elementui upload上传excel
时间: 2023-03-20 14:08:04 浏览: 151
elemetUi 组件–el-upload实现上传Excel文件的实例
5星 · 资源好评率100%
ElementUI 的 Upload 组件可以用来上传 Excel 文件。具体步骤如下:
1. 在模板中引入 Upload 组件:
```
<template>
<el-upload
class="upload-excel"
:action="uploadUrl"
:before-upload="beforeUpload"
:on-success="onSuccess"
:on-error="onError"
:show-file-list="false"
:accept=".xlsx, .xls"
>
<el-button size="small" type="primary">上传 Excel</el-button>
</el-upload>
</template>
```
2. 在 data 中定义上传文件的 URL:
```
data() {
return {
uploadUrl: '/api/uploadExcel'
}
}
```
3.
阅读全文