pinafore/routes/index.html

21 lines
447 B
HTML
Raw Normal View History

<Title name="Home" />
<Layout page='home'>
<LazyPage {pageComponent} {params} />
2018-01-06 23:51:25 +00:00
</Layout>
<script>
2018-01-09 02:14:21 +00:00
import Layout from './_components/Layout.html'
import Title from './_components/Title.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/index.html'
2018-01-06 23:51:25 +00:00
export default {
components: {
Layout,
Title,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>