mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 14:26:06 +02:00
refactor usevuetable data
This commit is contained in:
@@ -179,7 +179,9 @@
|
||||
|
||||
const { table } = useVrcxVueTable({
|
||||
persistKey: 'avatarImportDialog',
|
||||
data: rows,
|
||||
get data() {
|
||||
return rows.value;
|
||||
},
|
||||
columns: columns.value,
|
||||
getRowId: (row) => String(row?.id ?? ''),
|
||||
enablePagination: false,
|
||||
|
||||
@@ -160,7 +160,9 @@
|
||||
|
||||
const { table } = useVrcxVueTable({
|
||||
persistKey: 'friendImportDialog',
|
||||
data: rows,
|
||||
get data() {
|
||||
return rows.value;
|
||||
},
|
||||
columns: columns.value,
|
||||
getRowId: (row) => String(row?.id ?? ''),
|
||||
enablePagination: false,
|
||||
|
||||
@@ -185,7 +185,9 @@
|
||||
|
||||
const { table } = useVrcxVueTable({
|
||||
persistKey: 'worldImportDialog',
|
||||
data: rows,
|
||||
get data() {
|
||||
return rows.value;
|
||||
},
|
||||
columns: columns.value,
|
||||
getRowId: (row) => String(row?.id ?? ''),
|
||||
enablePagination: false,
|
||||
|
||||
Reference in New Issue
Block a user