pinafore/src/routes/index.html

21 lines
357 B
HTML
Raw Normal View History

<Title name="Home" />
<LazyPage {pageComponent} {params} />
2018-01-07 00:51:25 +01:00
<script>
import Title from './_components/Title.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/index.html'
2018-01-07 00:51:25 +01:00
export default {
components: {
Title,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>