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/ddb3ab79638c84363fd8efaa21cc4858 to your computer and use it in GitHub Desktop.
Save thefln/ddb3ab79638c84363fd8efaa21cc4858 to your computer and use it in GitHub Desktop.
<template>
<a href="#" class="snipcart-add-item"
:data-item-id="product.product_id"
:data-item-name="product.name"
:data-item-price="product.price"
data-item-url="https://snipcart-buttercms-demo.netlify.com/.netlify/functions/snipcart_json_crawler"
:data-item-image="product.image">Buy for {{ product.price | price }}&nbsp;$</a>
</template>
<script>
export default {
name: 'BuyButton',
props: ['product'],
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment