16 lines
199 B
Vue
16 lines
199 B
Vue
<template>
|
|
<hello-world />
|
|
</template>
|
|
|
|
<script>
|
|
import HelloWorld from '../components/HelloWorld'
|
|
|
|
export default {
|
|
name: 'Home',
|
|
|
|
components: {
|
|
HelloWorld,
|
|
},
|
|
}
|
|
</script>
|