init git
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
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: "/" },
|
||||
]
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user