marc-leopold/pages/index.vue

25 lines
310 B
Vue

<template>
<ContentPage heading="The Index Page Heading">
</ContentPage>
</template>
<script>
import ContentPage from '@/components/ContentPage'
export default {
name: 'HomePage',
components: {
ContentPage
},
data() {
return {
}
}
}
</script>
<style scoped lang="scss">
</style>