Merge branch 'develop' into dev-tee
This commit is contained in:
commit
348084e60e
4 changed files with 33 additions and 10 deletions
|
|
@ -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: {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
@ -64,6 +64,14 @@ const rows2 = ref<any>([
|
|||
file: "",
|
||||
},
|
||||
]);
|
||||
const props = defineProps({
|
||||
roundId: {
|
||||
type: String,
|
||||
},
|
||||
});
|
||||
onMounted(() => {
|
||||
console.log(props.roundId);
|
||||
});
|
||||
const resetFilterRef = () => {
|
||||
filterKeyword.value = "";
|
||||
filterDoc.value.focus();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue