ba9dee3ea8
* feat(fe2): showing view all in certain model views * precommit fixes
14 lines
289 B
Vue
14 lines
289 B
Vue
<template>
|
|
<CommonEmptyState :cta="cta">
|
|
No items matching your search query found!
|
|
</CommonEmptyState>
|
|
</template>
|
|
<script setup lang="ts">
|
|
const emit = defineEmits<{ 'clear-search': [] }>()
|
|
|
|
const cta = {
|
|
text: 'Clear Search',
|
|
onClick: () => emit('clear-search')
|
|
}
|
|
</script>
|