diff --git a/frontend/components/Note.vue b/frontend/components/NoteCard.vue
similarity index 67%
rename from frontend/components/Note.vue
rename to frontend/components/NoteCard.vue
index 60dc718..2958080 100644
--- a/frontend/components/Note.vue
+++ b/frontend/components/NoteCard.vue
@@ -5,21 +5,27 @@
Last updated {{ prettyDate }}
-
-
- {{ tag }}
-
-
+
+
+ View
-
-
diff --git a/frontend/components/TagsGroup.vue b/frontend/components/TagsGroup.vue
new file mode 100644
index 0000000..b9e8754
--- /dev/null
+++ b/frontend/components/TagsGroup.vue
@@ -0,0 +1,27 @@
+
+
+
+ {{ tag }}
+
+
+
+
+
diff --git a/frontend/pages/notes/_uuid.vue b/frontend/pages/notes/_uuid.vue
new file mode 100644
index 0000000..1c2e77a
--- /dev/null
+++ b/frontend/pages/notes/_uuid.vue
@@ -0,0 +1,40 @@
+
+
+
+ {{ note.title }}
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/pages/notes.vue b/frontend/pages/notes/index.vue
similarity index 87%
rename from frontend/pages/notes.vue
rename to frontend/pages/notes/index.vue
index 337f8a1..4e08670 100644
--- a/frontend/pages/notes.vue
+++ b/frontend/pages/notes/index.vue
@@ -16,7 +16,8 @@
lg="4"
xl="3"
>
-
import { mapState } from 'vuex'
-import Note from '@/components/Note.vue'
+import NoteCard from '@/components/NoteCard.vue'
export default {
name: 'Notes',
- components: { Note },
+ components: { NoteCard },
data: () => ({
loading: true,
}),