marc-leopold/pages/index.vue

25 lines
310 B
Vue
Raw Normal View History

2019-01-02 21:11:40 +00:00
<template>
2019-01-03 14:06:28 +00:00
<ContentPage heading="The Index Page Heading">
</ContentPage>
2019-01-02 21:11:40 +00:00
</template>
<script>
2019-01-03 14:06:28 +00:00
import ContentPage from '@/components/ContentPage'
2019-01-02 21:11:40 +00:00
export default {
name: 'HomePage',
2019-01-03 14:06:28 +00:00
components: {
ContentPage
},
2019-01-02 21:11:40 +00:00
data() {
return {
}
}
}
</script>
<style scoped lang="scss">
</style>