You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
330 B
19 lines
330 B
5 years ago
|
<template>
|
||
|
<div class="home">
|
||
|
<img alt="Vue logo" src="../assets/logo.png" />
|
||
|
<HelloWorld msg="Welcome to Your Vue.js App" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
// @ is an alias to /src
|
||
|
import HelloWorld from '@/components/HelloWorld.vue';
|
||
|
|
||
|
export default {
|
||
|
name: 'home',
|
||
|
components: {
|
||
|
HelloWorld,
|
||
|
},
|
||
|
};
|
||
|
</script>
|