update to Vue 3.3

This commit is contained in:
2023-05-11 20:44:23 +02:00
parent 25ce1a6954
commit 831aec6d2e
8 changed files with 206 additions and 227 deletions

View File

@@ -10,7 +10,7 @@ const props = defineProps<{
}>()
const emit = defineEmits<{
(e: 'update', note: Note): void
update: [note: Note]
}>()
const noteTitle = ref(props.note.title)