donal
2018-05-09 e480bbd65965a3e3870d2ffeb6bcf80eaefeff65
commit | author | age
998a46 1 <template>
D 2   <div class="home">
128c44 3     <img class="banner-image" src="../assets/oil-protobadge.png" width="330px">
D 4     <h1>
5       Welcome ðŸ‘‹
6     </h1>
7     <AboutLabs/>
998a46 8   </div>
D 9 </template>
10
11 <script>
12 // @ is an alias to /src
128c44 13 import AboutLabs from "@/components/AboutLabs.vue";
D 14
998a46 15 export default {
D 16   name: "home",
17   components: {
128c44 18     AboutLabs
998a46 19   }
D 20 };
21 </script>
128c44 22 <style scoped>
D 23 .banner-image {
24   padding-bottom: 20px;
25   padding-top: 20px;
26 }
27 </style>