This commit is contained in:
2023-04-27 12:09:14 +02:00
parent 3579a5894a
commit 552cd7269b
15 changed files with 392 additions and 47 deletions

9
src/components/Note.vue Normal file
View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
defineProps<{
note: Note
}>()
</script>
<template>
<h1>{{ note.title }}</h1>
<div>{{ note.content }}</div>
</template>