Merge branch 'develop' into warunee-dev

This commit is contained in:
Warunee Tamkoo 2023-08-23 22:23:36 +07:00
commit 4977ab5f7e
6 changed files with 118 additions and 14 deletions

View file

@ -173,9 +173,6 @@ const columns2 = ref<QTableProps["columns"]>([
const rows2 = ref<any[]>([]);
const Note = ref<string>("");
const titleModal = ref<string>("");
const actionModal = ref<string>("");
const person = ref<any>([]);
const props = defineProps({
tab: {

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref } from "vue";
import { ref, onMounted } from "vue";
import type { QTableProps } from "quasar";
const fileUpload = ref<any>(null);
@ -59,6 +59,14 @@ const rows2 = ref<any>([
file: "",
},
]);
const props = defineProps({
roundId: {
type: String,
},
});
onMounted(() => {
console.log(props.roundId);
});
const resetFilterRef = () => {
filterKeyword.value = "";
filterDoc.value.focus();