Components
asyncData
async asyncData({ $shopify, params }) {
const product = await $shopify.product.fetch(params.id);
return { product };
}
methods
/created
/mounted
/etc
methods: {
async fetchProduct(productId) {
this.product = await this.$shopify.product.fetch(productId);
}
}