16 lines
647 B
Vue
16 lines
647 B
Vue
<!-- =============================== -->
|
|
<!-- Component Show No Result Found Message -->
|
|
<!-- When filtering Drodown(q-select) -->
|
|
<!-- ข้อความที่จะแสดงเวลาค้นหาข้อมูลในดรอบดาวน์ไม่เจอ -->
|
|
<!-- ใช้หลายที่ จะได้จัด css ที่เดียว -->
|
|
<!-- =============================== -->
|
|
|
|
<template>
|
|
<q-item>
|
|
<q-item-section class="text-black"> ไม่พบข้อมูลที่ค้นหา </q-item-section>
|
|
</q-item>
|
|
</template>
|
|
|
|
<script setup lang="ts"></script>
|
|
|
|
<style lang="scss"></style>
|