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

@@ -23,11 +23,15 @@
</el-form-item>
<el-form-item>
<el-button class="filter-item" 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>
@@ -41,7 +45,9 @@
type="success"
@click="handleOpenDialog(0, undefined)"
>
<i-ep-plus />
<template #icon>
<Plus />
</template>
新增
</el-button>
<el-button
@@ -50,7 +56,9 @@
:disabled="ids.length === 0"
@click="handleDelete()"
>
<i-ep-delete />
<template #icon>
<Delete />
</template>
删除
</el-button>
</template>
@@ -84,7 +92,9 @@
size="small"
@click.stop="handleOpenDialog(scope.row.id, undefined)"
>
<i-ep-plus />
<template #icon>
<Plus />
</template>
新增
</el-button>
<el-button
@@ -94,7 +104,9 @@
size="small"
@click.stop="handleOpenDialog(scope.row.parentId, scope.row.id)"
>
<i-ep-edit />
<template #icon>
<Edit />
</template>
编辑
</el-button>
<el-button
@@ -104,7 +116,9 @@
size="small"
@click.stop="handleDelete(scope.row.id)"
>
<i-ep-delete />
<template #icon>
<Delete />
</template>
删除
</el-button>
</template>