donal
2018-04-21 d3c92cdb92e37963dfb4ec69da9c728747d671a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <div class="home">
    <h2>Overview of the todo app's component structure</h2>
    <img src="@/assets/ComponentsLabs.png"/>
  </div>
 
</template>
 
<script>
export default {
  name: "ComponentView",
  data() {
    return {};
  }
};
</script>