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