From 8ec7a09193bc1859a279b8c247ac86016ab913b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Tue, 26 Sep 2023 22:30:30 -0400 Subject: [PATCH] feat(components): create reusable components to be used for listing stories this includes - individual story information - the list itself (duh) - a component for displaying key-value pairs delimited by `: ` --- components/listings/metaItem.vue | 9 ++ components/listings/singleStory.vue | 240 ++++++++++++++++++++++++++++ components/listings/stories.vue | 52 ++++++ 3 files changed, 301 insertions(+) create mode 100644 components/listings/metaItem.vue create mode 100644 components/listings/singleStory.vue create mode 100644 components/listings/stories.vue diff --git a/components/listings/metaItem.vue b/components/listings/metaItem.vue new file mode 100644 index 0000000..dd94a0b --- /dev/null +++ b/components/listings/metaItem.vue @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/components/listings/singleStory.vue b/components/listings/singleStory.vue new file mode 100644 index 0000000..e92375e --- /dev/null +++ b/components/listings/singleStory.vue @@ -0,0 +1,240 @@ + + + + \ No newline at end of file diff --git a/components/listings/stories.vue b/components/listings/stories.vue new file mode 100644 index 0000000..d026c92 --- /dev/null +++ b/components/listings/stories.vue @@ -0,0 +1,52 @@ + + + \ No newline at end of file