2024-06-14 12:01:58 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
defineProps<{
|
|
|
|
|
size?: number;
|
2024-06-18 11:45:45 +00:00
|
|
|
useField?: boolean;
|
2024-06-28 02:37:37 +00:00
|
|
|
notFound?: boolean;
|
2024-06-14 12:01:58 +07:00
|
|
|
}>();
|
|
|
|
|
</script>
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<q-img
|
|
|
|
|
src="no-data.png"
|
|
|
|
|
:style="{
|
|
|
|
|
height: size ? `${size}px` : '120px',
|
|
|
|
|
width: size ? `${size + 2}px` : '123px',
|
|
|
|
|
}"
|
|
|
|
|
/>
|
2024-06-18 11:45:45 +00:00
|
|
|
<div class="app-text-muted text-center">
|
2024-06-28 02:37:37 +00:00
|
|
|
{{ notFound ? $t('notFound') : useField ? $t('noField') : $t('noData') }}
|
2024-06-18 11:45:45 +00:00
|
|
|
</div>
|
2024-06-14 12:01:58 +07:00
|
|
|
</div>
|
|
|
|
|
</template>
|