Skip to main content

Contact Us

Deprecation Notice

Vue-based themes will soon be deprecated. Please switch to React-based themes, as all future updates and support will focus exclusively on React.

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

theme/templates/components/footer.vue
</div>
<div className="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>

Was this section helpful?