Skip to main content

Wishlist

The wishlist page will render a wishlist page.

QG11


Argument to be passed

contexttypeDescription
favouritesobjectfavourite object consist of details like data

context.favourite

This will be the object that Returns the favourite item in wishlist page.

Example

theme/templates/pages/wishlist.vue
<div className="product-container">
<div
v-for="(product, index) in context.favourites.data" :key="index + '-product.uid'" >
{{product}}
</div>
</div>

Was this section helpful?