fix: 🐛 移除unplugin-icon插件,避免vue-template-compiler编译器在某些机器引发的报错
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user