mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
remove v-directives
This commit is contained in:
@@ -181,7 +181,6 @@
|
||||
const friendsListColumns = computed(() =>
|
||||
createColumns({
|
||||
randomUserColours,
|
||||
bulkUnfriendMode: friendsListBulkUnfriendMode,
|
||||
selectedFriends,
|
||||
onToggleFriendSelection: toggleFriendSelection,
|
||||
onConfirmDeleteFriend: confirmDeleteFriend
|
||||
@@ -227,6 +226,18 @@
|
||||
{ immediate: true }
|
||||
);
|
||||
|
||||
watch(
|
||||
friendsListBulkUnfriendMode,
|
||||
(enabled) => {
|
||||
const column = table?.getColumn?.('bulkSelect');
|
||||
if (!column) {
|
||||
return;
|
||||
}
|
||||
column.toggleVisibility(Boolean(enabled));
|
||||
},
|
||||
{ immediate: true }
|
||||
);
|
||||
|
||||
watch(pageSize, (size) => {
|
||||
if (pagination.value.pageSize === size) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user