mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
refactor(editor): Standardize how we use defineEmits in components using the composition API (no-changelog) (#9934)
This commit is contained in:
@@ -44,7 +44,7 @@ interface Props {
|
||||
const props = defineProps<Props>();
|
||||
|
||||
const emit = defineEmits<{
|
||||
(event: 'update:modelValue', value: string): void;
|
||||
'update:modelValue': [value: string];
|
||||
}>();
|
||||
|
||||
const isNameEdit = ref(false);
|
||||
|
||||
Reference in New Issue
Block a user