decrypt notes

This commit is contained in:
2023-05-22 20:48:53 +02:00
parent 55a281581e
commit 7ca2b25e8f
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>()