1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <template>
| <div class="home">
| <img alt="Vue logo" src="../assets/logo.png">
| <%_ if (!rootOptions.bare) { _%>
| <HelloWorld msg="Welcome to Your Vue.js App"/>
| <%_ } else { _%>
| <h1>Welcome to Your Vue.js App</h1>
| <%_ } _%>
| </div>
| </template>
| <%_ if (!rootOptions.bare) { _%>
|
| <script>
| // @ is an alias to /src
| import HelloWorld from '@/components/HelloWorld.vue'
|
| export default {
| name: 'Home',
| components: {
| HelloWorld
| }
| }
| </script>
| <%_ } _%>
|
|