From 23ae0eb43b46d2ec412603fd6d625ab25c7bbbe5 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Wed, 05 Apr 2023 19:02:44 +0800
Subject: [PATCH] 修复tab栏”关闭其他“异常的问题
---
ruoyi-ui/src/components/IconSelect/index.vue | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ruoyi-ui/src/components/IconSelect/index.vue b/ruoyi-ui/src/components/IconSelect/index.vue
index a7512b2..20a5d1a 100644
--- a/ruoyi-ui/src/components/IconSelect/index.vue
+++ b/ruoyi-ui/src/components/IconSelect/index.vue
@@ -1,7 +1,7 @@
<!-- @author zhengjie -->
<template>
<div class="icon-body">
- <el-input v-model="name" style="position: relative;" clearable placeholder="请输入图标名称" @clear="filterIcons" @input.native="filterIcons">
+ <el-input v-model="name" style="position: relative;" clearable placeholder="请输入图标名称" @clear="filterIcons" @input="filterIcons">
<i slot="suffix" class="el-icon-search el-input__icon" />
</el-input>
<div class="icon-list">
--
Gitblit v1.9.3