2021-02-26 16:06:19 +08:00
|
|
|
<template>
|
2021-02-26 18:24:51 +08:00
|
|
|
<!-- App.vue -->
|
|
|
|
<Main></Main>
|
2021-02-26 16:06:19 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
// @ is an alias to /src
|
2021-02-26 18:24:51 +08:00
|
|
|
// import Main from '@/components/HelloWorld.vue'
|
|
|
|
import Main from '../components/Main.vue'
|
2021-02-26 16:06:19 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Home',
|
|
|
|
components: {
|
2021-02-26 18:24:51 +08:00
|
|
|
Main,
|
2021-02-26 16:06:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|