updates
This commit is contained in:
9
src/components/Note.vue
Normal file
9
src/components/Note.vue
Normal file
@@ -0,0 +1,9 @@
|
||||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
note: Note
|
||||
}>()
|
||||
</script>
|
||||
<template>
|
||||
<h1>{{ note.title }}</h1>
|
||||
<div>{{ note.content }}</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user