An import excel component based on element-plus
$ npm install element-excel-import
Document: https://lizhenteng.github.io/element-import-excel/
// main.ts
import { createApp } from 'vue'
import ImportView from 'element-import-excel'
import 'element-import-excel/dist/index.css'
import App from './App.vue'
const app = createApp(App)
app.use(ImportView)
app.mount('#app')
<template>
<import-view />
</template>
<script lang="ts" setup>
import { ImportView } from 'element-import-excel'
import 'element-import-excel/dist/index.css'
</script>
Element Import Excel is open source software licensed as MIT.