ค้นหา keyword

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-11-24 18:12:56 +07:00
parent e7b0bbc284
commit 4bcc414a4f
6 changed files with 81 additions and 33 deletions

View file

@ -21,10 +21,6 @@ const props = defineProps({
type: Object,
default: null,
},
fetcthDataTable: {
type: Function,
require: true,
},
})
const data = ref<any>()
@ -43,11 +39,7 @@ watch(
<q-dialog v-model="props.modal">
<q-card class="column" style="width: 300px; min-height: 600px">
<HeaderPopup :title="props.title" :clickClose="clickClosePopup" />
<FormTime
:dataById="data"
:closePopup="clickClosePopup"
:fetcthDataTable="props.fetcthDataTable"
/>
<FormTime :dataById="data" :closePopup="clickClosePopup" />
</q-card>
</q-dialog>
</template>