fix: empty data do not show no data
This commit is contained in:
parent
16b3685e09
commit
cea00bdd46
1 changed files with 1 additions and 1 deletions
|
|
@ -707,7 +707,7 @@ watch(inputSearch, async () => await fetchUserList());
|
|||
</template>
|
||||
|
||||
<div
|
||||
v-if="userData?.total === 0"
|
||||
v-if="userData?.total === 0 && !!inputSearch"
|
||||
class="row full-width items-center justify-center"
|
||||
style="min-height: 250px"
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue