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