#150 - updated empty states
This commit is contained in:
parent
0e06c6ec54
commit
40e74be394
@ -8,7 +8,10 @@
|
|||||||
No search result
|
No search result
|
||||||
</slot>
|
</slot>
|
||||||
</h3>
|
</h3>
|
||||||
<p class="text-sm">
|
<p
|
||||||
|
v-if="showDescription"
|
||||||
|
class="text-sm"
|
||||||
|
>
|
||||||
<slot name="text">
|
<slot name="text">
|
||||||
Try a different search query
|
Try a different search query
|
||||||
</slot>
|
</slot>
|
||||||
@ -18,4 +21,11 @@
|
|||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { SearchIcon } from '@heroicons/vue/solid'
|
import { SearchIcon } from '@heroicons/vue/solid'
|
||||||
|
|
||||||
|
defineProps({
|
||||||
|
showDescription: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user