Files
anahita-front/initialize/contact-us.js
T
mohadese namavar ec84dfd222 init git
2024-06-16 00:22:14 +04:30

47 lines
1.6 KiB
JavaScript

export default () => {
const { t } = useI18n()
return reactive({
fields: {
fullName: {
is: "InputText",
label: t("nameAndFamily"),
props: {
placeholder: ""
},
},
call: {
is: "InputText",
label: t("emailOrPhone"),
props: {
placeholder: "", style: 'direction: ltr'
},
},
content: {
is: "Textarea",
label: t("yourTextMessage"),
props: {
placeholder: ""
},
},
},
ways: [
{ icon: "isax-call", label: "phone", value: "67341" },
{ icon: "isax-message", label: "postalCode", value: "1136834843" },
{
icon: "isax-location",
label: "centeralOffice",
value: "تهران، میدان امام خمینی، خیابان فردوسی، خیابان سرهنگ سخائی نبش کوچه بهنیا، پلاک40، طبقه چهارم، واحد12 ",
},
],
map: {
props: { zoom: 17, center: [35.6995282, 51.3383703] },
layer: { url: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', name: 'OpenStreetMap' }
},
socials: [
{ icon: "linkedin", url: "/" },
{ icon: "telegram", url: "/" },
{ icon: "whatsapp", url: "/" },
{ icon: "twitter", url: "/" },
]
})
}