Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# OTUS Vuemmerce CHANGELOG

- 02.2019 - Добавить корзину by @CrazyBite
- 02.2019 - Страница покупки by @dmitriypereverza
- 08.2019 - Профиль пользователя by @antik9
- 03.2019 - Добавить категории by @georgius1024
- 08.2019 - Страница результатов поиска by @stvort
- 08.2019 - Добавить компонент слайдера by @Kiselb
- 08.2019 - добавить новости by @bazoon
- 09.2019 - Добавить пагинацию by @810411
- 10.2019 - Добавить дерево категорий by @yanky2000
- 02.2019 - Добавить корзину by @CrazyBite
- 02.2019 - Страница покупки by @dmitriypereverza
- 08.2019 - Профиль пользователя by @antik9
- 03.2019 - Добавить категории by @georgius1024
- 08.2019 - Страница результатов поиска by @stvort
- 08.2019 - Добавить компонент слайдера by @Kiselb
- 08.2019 - добавить новости by @bazoon
- 09.2019 - Добавить пагинацию by @810411
- 10.2019 - Добавить дерево категорий by @yanky2000
- 01.2020 - Недавно просмотренные товары by @Chikov-Dmitry
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuemmerce",
"version": "0.8.4",
"version": "0.8.5",
"private": true,
"description": "Responsive ecommerce template built with Vue.js",
"author": "ivan lori <ivan.lori@protonmail.com>",
Expand Down Expand Up @@ -85,4 +85,4 @@
"type": "git",
"url": "https://github.com/ivanlori/Vuemmerce.git"
}
}
}
19 changes: 11 additions & 8 deletions src/components/homepage/Homepage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,25 @@
<ads></ads>
<news></news>
<categories_list-container></categories_list-container>
<recentlyViewed></recentlyViewed>
</div>
</template>

<script>
import CategoriesListContainer from '../categories/CategoriesListContainer';
import HeroSection from '../hero/Hero';
import CategoriesListContainer from "../categories/CategoriesListContainer";
import HeroSection from "../hero/Hero";
import VmNewsList from "../news/NewsListContainer";
import ads from '../ads/ads';
import ads from "../ads/ads";
import recentlyViewed from "../recently_viewed/recently_viewed";

export default {
name: 'homepage-component',
name: "homepage-component",
components: {
'categories_list-container': CategoriesListContainer,
'hero': HeroSection,
'news': VmNewsList,
ads
"categories_list-container": CategoriesListContainer,
hero: HeroSection,
news: VmNewsList,
ads,
recentlyViewed: recentlyViewed
}
};
</script>
Loading