Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thefln/00d26d1df551406187447737fb052042 to your computer and use it in GitHub Desktop.
Save thefln/00d26d1df551406187447737fb052042 to your computer and use it in GitHub Desktop.
<template>
<not-found v-if="notFound" />
<div class="product-details" v-else>
<figure>
<img :src="product.fields.image" :alt="product.fields.name" />
</figure>
<section>
<h2>{{product.fields.name}}</h2>
<p>{{product.fields.description}}</p>
<p><buy-button :product="product.fields" /></p>
</section>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment