decrypt notes

This commit is contained in:
2023-05-22 20:48:53 +02:00
parent d45ceb9b41
commit b7e5da2354
11 changed files with 152 additions and 24 deletions

View File

@@ -12,7 +12,7 @@ const emit = defineEmits<{
const results = computed<Note[]>(() => {
return (
props.autocompleteText ? findNotesByByTitle(props.autocompleteText) : notes.value
).filter((note) => note.id !== activeNote.value?.id)
).filter((note) => note.id !== activeNote.value?.id).slice(10)
})
const activeResult = ref<Note>()