2018-01-06 15:51:25 -08:00
|
|
|
|
<:Head>
|
2018-01-21 11:07:16 -08:00
|
|
|
|
<title>Pinafore – Home</title>
|
2018-01-06 15:51:25 -08:00
|
|
|
|
</:Head>
|
2018-02-12 22:06:05 -08:00
|
|
|
|
<Layout page='home'>
|
2018-03-13 17:14:57 -07:00
|
|
|
|
<LazyPage :pageComponent :params />
|
2018-01-06 15:51:25 -08:00
|
|
|
|
</Layout>
|
|
|
|
|
<script>
|
2018-01-08 18:14:21 -08:00
|
|
|
|
import Layout from './_components/Layout.html'
|
2018-03-13 17:14:57 -07:00
|
|
|
|
import LazyPage from './_components/LazyPage.html'
|
|
|
|
|
import pageComponent from './_pages/index.html'
|
2018-01-06 15:51:25 -08:00
|
|
|
|
|
2018-03-13 17:14:57 -07:00
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
Layout,
|
|
|
|
|
LazyPage
|
|
|
|
|
},
|
|
|
|
|
data: () => ({
|
|
|
|
|
pageComponent
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</script>
|