From 4014ffd5d10f2a3d26ec84ea6e9fe28e6f46ae38 Mon Sep 17 00:00:00 2001 From: Arthur Danjou Date: Mon, 19 Apr 2021 22:20:46 +0200 Subject: [PATCH] Testing and debugging --- @types/types.ts | 3 +-- src/components/Post.vue | 12 ++++++------ src/components/PostsHome.vue | 25 +++++++++++++------------ src/components/ProjectsHome.vue | 19 ++++++++++--------- src/pages/projects.vue | 2 +- 5 files changed, 31 insertions(+), 30 deletions(-) diff --git a/@types/types.ts b/@types/types.ts index b0f643f..ac0cb8c 100644 --- a/@types/types.ts +++ b/@types/types.ts @@ -58,8 +58,7 @@ interface Project { description: string, url: string, cover: string, - color: string, - skills: Array + tags: Array, } export { Form, InfoData, Skill, Experience, Formation, Post, Tag, Project } diff --git a/src/components/Post.vue b/src/components/Post.vue index 6dd67e1..76e47b4 100644 --- a/src/components/Post.vue +++ b/src/components/Post.vue @@ -2,7 +2,7 @@
+ :style="{ backgroundImage: `url(${getCover})` }">
@@ -26,7 +26,7 @@ - - diff --git a/src/components/ProjectsHome.vue b/src/components/ProjectsHome.vue index 9c9da69..3fd591c 100644 --- a/src/components/ProjectsHome.vue +++ b/src/components/ProjectsHome.vue @@ -1,8 +1,8 @@