fix: 🐛 移除unplugin-icon插件,避免vue-template-compiler编译器在某些机器引发的报错

This commit is contained in:
ray
2024-10-08 14:42:49 +08:00
parent 57bca54848
commit 20dc49df6c
28 changed files with 229 additions and 130 deletions

View File

@@ -18,7 +18,9 @@
</el-button>
<!-- 关闭按钮 -->
<el-button @click="handleClose" circle>
<i-ep-Close />
<template #icon>
<Close />
</template>
</el-button>
</div>
</div>

View File

@@ -29,11 +29,11 @@
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleQuery()">
<i-ep-search />
<Search />
搜索
</el-button>
<el-button @click="handleResetQuery()">
<i-ep-refresh />
<Refresh />
重置
</el-button>
</el-form-item>
@@ -47,7 +47,7 @@
type="success"
@click="handleOpenDialog()"
>
<i-ep-plus />
<Plus />
新增通知
</el-button>
<el-button
@@ -56,7 +56,7 @@
:disabled="ids.length === 0"
@click="handleDelete()"
>
<i-ep-delete />
<Delete />
删除
</el-button>
</template>

View File

@@ -12,11 +12,15 @@
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleQuery()">
<i-ep-search />
<template #icon>
<Search />
</template>
搜索
</el-button>
<el-button @click="handleResetQuery()">
<i-ep-refresh />
<template #icon>
<Refresh />
</template>
重置
</el-button>
</el-form-item>