From caab316417b95d00b5a813831c306cf8b31085c7 Mon Sep 17 00:00:00 2001 From: matt Date: Wed, 30 Mar 2022 01:08:04 +0000 Subject: [PATCH] FunkoCards should use a seperate href prop for link --- vue/components/FunkoCard.js | 2 +- vue/funkos.js | 24 ++++++++++++++++-------- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/vue/components/FunkoCard.js b/vue/components/FunkoCard.js index 7e623a6..ddf118c 100644 --- a/vue/components/FunkoCard.js +++ b/vue/components/FunkoCard.js @@ -12,7 +12,7 @@ export default {

- Read more + Read more ` diff --git a/vue/funkos.js b/vue/funkos.js index 313c504..cefc0dd 100644 --- a/vue/funkos.js +++ b/vue/funkos.js @@ -4,55 +4,63 @@ const funkos = [ img: 'aouwanda', price: 50, description: 'bob', - rank: 1 + rank: 1, + href: 'aouwanda' }, { title: 'Anti Venom', img: 'antivenom', price: 50, description: 'bob', - rank: 1 + rank: 1, + href: 'antivenom' }, { title: 'Integrated Spiderman Suit', img: 'spidey', price: 50, description: 'bob', - rank: 1 + rank: 1, + href: 'spidey' }, { title: 'Halloween Wanda', img: 'halwanda', price: 50, description: 'bob', - rank: 1 + rank: 1, + href: 'halwanda' }, { title: 'The Scarlet Witch', img: 'floatwanda', price: 50, description: 'bob', - rank: 1 + rank: 1, + href: 'floatwanda' }, { title: 'Kate Bishop and Lucky the Dog', img: 'katebishop', price: 50, description: 'bob', - rank: 1 + rank: 1, + href: 'katebishop' }, { title: 'Yelena', img: 'yelena', price: 50, description: 'bob', - rank: 1 + rank: 1, + href: 'yelena' }, { title: 'Civil War Wanda', img: 'cwwanda', price: 50, description: 'bob', - rank: 1 + rank: 1, + href: 'cwwanda' } ];