fix bug rows
This commit is contained in:
parent
823fe93528
commit
8e422174a8
34 changed files with 34 additions and 34 deletions
|
|
@ -618,7 +618,7 @@ const checkValidate = ref<boolean>(false); //validate data ผ่านหรื
|
|||
const profileId = ref<string>(
|
||||
route.params.id ? route.params.id.toString() : ""
|
||||
);
|
||||
const rows = ref<any>([]);
|
||||
const rows = ref<any[]>([]);
|
||||
const filter = ref<string>(""); //search data table
|
||||
const visibleColumns = ref<String[]>([]);
|
||||
profileData.insignia.columns.length == 0
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ const columns = ref<any["columns"]>([
|
|||
style: "font-size: 14px",
|
||||
},
|
||||
]);
|
||||
const rows = ref<any>([]);
|
||||
const rows = ref<any[]>([]);
|
||||
|
||||
const clickOpenpopup = () => {
|
||||
modal.value = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue