diff options
Diffstat (limited to 'iridescence/src/components/ProductCard.vue')
-rw-r--r-- | iridescence/src/components/ProductCard.vue | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/iridescence/src/components/ProductCard.vue b/iridescence/src/components/ProductCard.vue index 4ff6c80..cfea0fd 100644 --- a/iridescence/src/components/ProductCard.vue +++ b/iridescence/src/components/ProductCard.vue @@ -3,12 +3,18 @@ <div class="card"> <div class="card-image"> <figure class="image is-square"> - <img :src="thumbnail" :alt="name" title="Click to expand." /> + <a href="#"> + <img :src="thumbnail" :alt="name" title="Click to expand." /> + </a> </figure> </div> <div class="card-content"> <div class="content"> - <p class="title is-4">{{ name }}</p> + <p class="title is-4"> + <a href="#"> + {{ name }} + </a> + </p> <p class="subtitle is-4"> {{ dollars }} </p> |