fix
This commit is contained in:
parent
9a30641879
commit
1c006b8c3a
1 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ import { useCounterMixin } from "@/stores/mixin";
|
||||||
|
|
||||||
const type = ref<string>("");
|
const type = ref<string>("");
|
||||||
const mixin = useCounterMixin();
|
const mixin = useCounterMixin();
|
||||||
const { date2Thai,onSearchDataTable } = mixin;
|
const { date2Thai, onSearchDataTable } = mixin;
|
||||||
const modal = defineModel<boolean>("modal", { required: true });
|
const modal = defineModel<boolean>("modal", { required: true });
|
||||||
const title = defineModel<string>("title", { required: true });
|
const title = defineModel<string>("title", { required: true });
|
||||||
|
|
||||||
|
|
@ -72,7 +72,7 @@ watch(
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<q-dialog v-model="modal" persistent>
|
<q-dialog v-model="modal" persistent>
|
||||||
<q-card>
|
<q-card style="min-width: 80%">
|
||||||
<DialogHeader :tittle="title" :close="close" />
|
<DialogHeader :tittle="title" :close="close" />
|
||||||
<q-separator />
|
<q-separator />
|
||||||
<q-card-section style="max-height: 80vh" class="scroll">
|
<q-card-section style="max-height: 80vh" class="scroll">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue