clone code
This commit is contained in:
parent
c9597d1e38
commit
d57bcd1719
362 changed files with 104804 additions and 0 deletions
15
src/components/Selector.vue
Normal file
15
src/components/Selector.vue
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<q-select v-bind="attrs">
|
||||
<template v-slot:no-option>
|
||||
<q-item>
|
||||
<q-item-section class="text-black">
|
||||
ไม่พบข้อมูลที่ค้นหา
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</template>
|
||||
</q-select>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref, useAttrs, defineAsyncComponent } from "vue";
|
||||
const attrs = ref<any>(useAttrs());
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue