logo add
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 11 KiB |
@@ -1,4 +1,9 @@
|
|||||||
html, body {
|
html {
|
||||||
|
padding: 0;
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<ul v-show="isOpen" class="menu-list">
|
<ul v-show="isOpen" class="menu-list">
|
||||||
<li v-for="item in menuItems" :key="item.id">
|
<li v-for="item in menuItems" :key="item.id">
|
||||||
<router-link :to="item.tooo">{{ item.id }} - {{ item.title }}</router-link>
|
<router-link :to="item.to">{{ item.id }} - {{ item.title }}</router-link>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -25,12 +25,12 @@
|
|||||||
return {
|
return {
|
||||||
isOpen: false,
|
isOpen: false,
|
||||||
menuItems: [
|
menuItems: [
|
||||||
{ id: 1, title: 'Главная', tooo: 'home' },
|
{ id: 1, title: 'Главная', to: '#' },
|
||||||
{ id: 2, title: 'О нас', tooo: 'about' },
|
{ id: 2, title: 'О нас', to: '/about' },
|
||||||
{ id: 3, title: 'Услуги', tooo: 'home' },
|
{ id: 3, title: 'Услуги', to: '#' },
|
||||||
{ id: 4, title: 'Контакты', tooo: 'home' },
|
{ id: 4, title: 'Контакты', to: '#' },
|
||||||
{ id: 5, title: 'Блог', tooo: 'home' },
|
{ id: 5, title: 'Блог', to: '#' },
|
||||||
{ id: 6, title: 'SignUp', tooo: 'signup' }
|
{ id: 6, title: 'SignUp', to: '#' }
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
|
import Header from '../components/Header.vue'
|
||||||
import About from '../components/AboutC.vue'
|
import About from '../components/AboutC.vue'
|
||||||
|
import Footer from '../components/Footer.vue'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<Header />
|
||||||
<About />
|
<About />
|
||||||
|
<Footer />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
Reference in New Issue
Block a user