eHandyTech/pages/index.vue
2021-06-28 01:07:31 +07:00

23 lines
339 B
Vue

<template>
<div>
<banner />
<banner />
<banner />
<banner />
<banner />
</div>
</template>
<script>
import { Vue, Component } from 'nuxt-property-decorator'
import Banner from '@/components/templates/home/Banner'
@Component({
components: {
Banner
}
})
export default class Index extends Vue {
}
</script>