15 lines
192 B
Vue
15 lines
192 B
Vue
|
|
<template>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
// @ is an alias to /src
|
||
|
|
import HelloWorld from '@/components/HelloWorld.vue'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'home',
|
||
|
|
components: {
|
||
|
|
HelloWorld
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|