Skip to main content

Contact Us

You are reading an outdated document

Get the latest developer guides on Fynd Partners Help

The contact us template renders the contact us page. QG11


Argument to be passed

contexttypeDescription
appInfobasic application details
supportobjectsupport object consist details likes contact

context.support.contact.email

This will be the object that Returns the contact detail of the contact_us page.

Example

</div>
<div class="contact">
<img
style="width:30px;height:30px;"
src="./../../assets/images/mail.svg"
v-if="
context.support &&
context.support.contact &&
context.support.contact.email.active &&
context.support.contact.email.email.length > 0
"
/>
{{ context.support.contact.email.email[0].value }}
</div>