From 2dfdd2f45f8e4c989c0ffa73f352834fae084762 Mon Sep 17 00:00:00 2001
From: Raymonzut <40148684+Raymonzut@users.noreply.github.com>
Date: Thu, 23 Apr 2020 14:07:57 +0200
Subject: [PATCH 1/2] Add core-js for polyfills
---
client/package-lock.json | 5 +++++
client/package.json | 1 +
2 files changed, 6 insertions(+)
diff --git a/client/package-lock.json b/client/package-lock.json
index 491690b..bcec67f 100644
--- a/client/package-lock.json
+++ b/client/package-lock.json
@@ -3648,6 +3648,11 @@
}
}
},
+ "core-js": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz",
+ "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA=="
+ },
"core-js-compat": {
"version": "3.6.4",
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.4.tgz",
diff --git a/client/package.json b/client/package.json
index 46887ba..4016028 100644
--- a/client/package.json
+++ b/client/package.json
@@ -21,6 +21,7 @@
},
"homepage": "https://github.com/Raymonzut/Personal-Website#readme",
"dependencies": {
+ "core-js": "^3.6.5",
"vue": "^2.6.11",
"vue-resource": "^1.5.1"
},
From 83a5d8a56cd6db4113a5dd258ef07f5061683779 Mon Sep 17 00:00:00 2001
From: Raymonzut <40148684+Raymonzut@users.noreply.github.com>
Date: Thu, 23 Apr 2020 14:12:07 +0200
Subject: [PATCH 2/2] Add the posts view
---
client/src/views/posts.vue | 67 ++++++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
create mode 100644 client/src/views/posts.vue
diff --git a/client/src/views/posts.vue b/client/src/views/posts.vue
new file mode 100644
index 0000000..5b2606b
--- /dev/null
+++ b/client/src/views/posts.vue
@@ -0,0 +1,67 @@
+
+
+
+ {{ month }}
+
+
+ -
+ {{ getPostItemDate(postItem) }} – {{ postItem.title }}
+
+
+
+
+
+
+ There are no posts yet, but don't worry they will be added soon
+
+
+
+
+
\ No newline at end of file