This commit is contained in:
2023-04-27 12:35:08 +02:00
parent 552cd7269b
commit 3f9393f09b
9 changed files with 48 additions and 17 deletions

View File

@@ -4,6 +4,13 @@ defineProps<{
}>()
</script>
<template>
<h1>{{ note.title }}</h1>
<h1 class="d-flex align-items-center">
<i class="root bi bi-house text-body-tertiary me-2" v-if="note.isRoot"></i>{{ note.title }}
</h1>
<div>{{ note.content }}</div>
</template>
<style scoped>
i.root {
font-size: 50%;
}
</style>