28 lines
456 B
Vue
28 lines
456 B
Vue
<template>
|
|
<ContentPage heading="The Index Page Heading">
|
|
<BackgroundImageLoader slot="background" />
|
|
</ContentPage>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentPage from '@/components/ContentPage'
|
|
import BackgroundImageLoader from '@/components/BackgroundImageLoader'
|
|
|
|
export default {
|
|
name: 'HomePage',
|
|
|
|
components: {
|
|
ContentPage,
|
|
BackgroundImageLoader
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
</style>
|