Skip to content
Fuwafuwa Framework
Contact us
Let us know what you need and we will get back to you in no time.
Name
Email
Mobile Phone
Subject
Message
Send
let data = { data: { name: '', mobile: '', email: '', subject: '', message: '', }, errors: {}, send() { fetchData('/ajax/user/message', { data: this.data, oper: 'add' }).then(data => { popupInfo('Thank you, we will reply soon', '', () => location.href = '/'); }, errors => { this.errors = errors; }).catch(e => popupError(e)); }, };