From e716edc63cf7942d79a19a0aff99506842c7d00a Mon Sep 17 00:00:00 2001 From: Zara Mudassar <zaramu@stud.ntnu.no> Date: Tue, 26 Apr 2022 13:29:56 +0200 Subject: [PATCH] Delete ItemCard.vue --- src/components/ItemCard.vue | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/components/ItemCard.vue diff --git a/src/components/ItemCard.vue b/src/components/ItemCard.vue deleted file mode 100644 index b120d82..0000000 --- a/src/components/ItemCard.vue +++ /dev/null @@ -1,35 +0,0 @@ -<template> - <div class="flex justify-center mt-5"> - <div class="w-2/5 rounded overflow-hidden bg-gray-100"> - <img - class="w-full" - :src="item.img || require('../assets/default-product.png')" - alt="Item image" - /> - <div class="p-1 m-1"> - <p class="text-gray-700 text-xs" id="adress"> - {{ item.adresse }} - </p> - <p class="font-bold text-sm" id="title">{{ item.title }}</p> - <p class="text-gray-700 text-xs" id="price"> - {{ item.price }} - </p> - </div> - </div> - </div> -</template> - -<script> -export default { - data() { - return { - item: { - img: "", - adresse: "adresse", - title: "Tittel", - price: "pris kr", - }, - }; - }, -}; -</script> -- GitLab