51 lines
925 B
JavaScript
Vendored
51 lines
925 B
JavaScript
Vendored
export const state = () => ({
|
|
header: {
|
|
fa: {
|
|
home: {
|
|
url: '/fa',
|
|
title: 'صفحه اصلی'
|
|
},
|
|
about: {
|
|
url: '/fa/about',
|
|
title: 'درباره ما'
|
|
},
|
|
services: {
|
|
url: '/fa/services',
|
|
title: 'خدمات'
|
|
},
|
|
products: {
|
|
url: '/fa/products',
|
|
title: 'محصولات'
|
|
},
|
|
contact: {
|
|
url: '/fa/contact',
|
|
title: 'ارتباط با ما'
|
|
}
|
|
},
|
|
en: {
|
|
home: {
|
|
url: '/en',
|
|
title: 'Home'
|
|
},
|
|
about: {
|
|
url: '/en/about',
|
|
title: 'About Us'
|
|
},
|
|
services: {
|
|
url: '/en/services',
|
|
title: 'Services'
|
|
},
|
|
products: {
|
|
url: '/en/products',
|
|
title: 'Products'
|
|
},
|
|
contact: {
|
|
url: '/en/contact',
|
|
title: 'Contact Us'
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
export const mutations = {}
|