base_ui/components/global/TableNoData.vue
2025-02-01 13:04:55 +03:30

29 lines
422 B
Vue

<template>
<tr class="disable-hover">
<td colspan="15">
<div class="">
داده ای وجود ندارد
</div>
</td>
</tr>
</template>
<script>
export default {}
</script>
<style lang="scss">
.disable-hover {
div {
background-color: #eee;
padding: 1em;
font-weight: bold;
}
&:hover {
background-color: transparent !important;
}
}
</style>