Skip to content

Commit

Permalink
Bind updates with @update:value in RegistryMirrors.vue
Browse files Browse the repository at this point in the history
Data binding for custom components should be using `@update:value` instead of `@input`.

Signed-off-by: Phillip Rak <[email protected]>
  • Loading branch information
rak-phillip committed Nov 6, 2024
1 parent 54f24cf commit 85b93b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default {
:default-add-value="defaultAddValue"
:initial-empty-row="true"
:mode="mode"
@input="update"
@update:value="update"
>
<template #default="{row}">
<div class="row">
Expand Down

0 comments on commit 85b93b0

Please sign in to comment.