Commit | Line | Data |
---|---|---|
625022fd BA |
1 | <template> |
2 | <div class="home"> | |
3 | <!--<img alt="Vue logo" src="../assets/logo.png">--> | |
4 | <HelloWorld msg="Welcome to Your Vue.js Apppp"/> | |
5 | </div> | |
6 | </template> | |
7 | ||
8 | <script> | |
9 | // @ is an alias to /src | |
10 | import HelloWorld from "@/components/HelloWorld.vue"; | |
11 | ||
12 | export default { | |
13 | name: "home", | |
14 | components: { | |
98db2082 | 15 | HelloWorld, |
625022fd BA |
16 | } |
17 | }; | |
18 | </script> |