Prateeksha Singh | ff616b8 | 2018-08-23 12:22:20 +0530 | [diff] [blame^] | 1 | <template> |
2 | <div class="app"> | ||||
3 | <hello></hello> | ||||
4 | </div> | ||||
5 | </template> | ||||
6 | |||||
7 | <script> | ||||
8 | import ItemCardsContainer from './components/ItemCardsContainer.vue'; | ||||
9 | export default { | ||||
10 | name: 'app', | ||||
11 | components: { | ||||
12 | ItemCardsContainer | ||||
13 | } | ||||
14 | } | ||||
15 | </script> | ||||
16 | |||||
17 | <style> | ||||
18 | body { | ||||
19 | display: flex; | ||||
20 | align-items: center; | ||||
21 | justify-content: center; | ||||
22 | height: 100%; | ||||
23 | margin: 0; | ||||
24 | } | ||||
25 | .app { | ||||
26 | color: #444; | ||||
27 | margin-top: 100px; | ||||
28 | max-width: 600px; | ||||
29 | font-family: Helvetica, sans-serif; | ||||
30 | text-align: center; | ||||
31 | display: flex; | ||||
32 | align-items: center; | ||||
33 | } | ||||
34 | </style> |