23 lines
339 B
Vue
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>
|