Commit 789f301b authored by Sergey Serov's avatar Sergey Serov

Site (mobile_equipment)

parent 665a5fda
...@@ -41,6 +41,7 @@ body{ ...@@ -41,6 +41,7 @@ body{
overflow-x: hidden; overflow-x: hidden;
background-color: black; background-color: black;
width: 100vw; width: 100vw;
/* min-width: 1000px; */
font-family: "Noah"; font-family: "Noah";
background-image: url('./source/Background.png'); background-image: url('./source/Background.png');
background-size: cover; background-size: cover;
......
This diff is collapsed.
This diff is collapsed.
...@@ -10,8 +10,7 @@ Vue.config.productionTip = false; ...@@ -10,8 +10,7 @@ Vue.config.productionTip = false;
new Vue({ new Vue({
router, router,
data: { data: {
mobile: false, mobile: false,
first: true,
lang: 'English' lang: 'English'
}, },
created: function() { created: function() {
...@@ -53,12 +52,8 @@ new Vue({ ...@@ -53,12 +52,8 @@ new Vue({
return "English"; return "English";
} }
if ( if (
string.includes("ru") || string.includes("ru") || string.includes("RU") || string.includes("Ru")
string.includes("RU") || ) {return "Russia"; }
string.includes("Ru")
) {
return "Russia";
}
return "English" return "English"
}, },
Before: function() { Before: function() {
......
...@@ -13,7 +13,7 @@ export default new Router({ ...@@ -13,7 +13,7 @@ export default new Router({
{ path: '/', name: 'Main', component: Main }, { path: '/', name: 'Main', component: Main },
{ path: '/equipment', name: 'Equipment', component: Equipment }, { path: '/equipment', name: 'Equipment', component: Equipment },
{ path: '/amenites', name: 'Amenites', component: Amenites }, { path: '/amenites', name: 'Amenites', component: Amenites },
{ path: '/contact', name: 'Contact', component: Contact } { path: '/contact', name: 'Contact', component: Contact },
] ]
}) })
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment