diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-25 23:27:41 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-25 23:27:41 +0100 |
commit | 737883fec5571448b6831919fb4e99e376cba53e (patch) | |
tree | 92c6449b18ca41cef8b0df643d3b11980e68b847 /components/Posts | |
parent | 9e920822e36cb554d94ba1f3ffd27c8339968156 (diff) | |
download | puszcza-737883fec5571448b6831919fb4e99e376cba53e.tar.gz puszcza-737883fec5571448b6831919fb4e99e376cba53e.zip |
Add Camp story
Diffstat (limited to 'components/Posts')
-rw-r--r-- | components/Posts/EmptyCampStory.vue | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/components/Posts/EmptyCampStory.vue b/components/Posts/EmptyCampStory.vue new file mode 100644 index 0000000..57bea40 --- /dev/null +++ b/components/Posts/EmptyCampStory.vue @@ -0,0 +1,19 @@ +<template> + <div> + <h3 style="margin: 10vh 10vmin 0 10vmin"> + Tutaj niedługo znajdziesz relację z obozu + </h3> + <pure-post-list loading :posts="[]" style="margin-bottom: 30px" /> + </div> +</template> + +<script> +import PurePostList from '~/components/Posts/PostList/PurePostList' + +export default { + name: 'EmptyCampStory', + components: { + PurePostList, + }, +} +</script> |