pinafore/routes/local.html

21 lines
417 B
HTML
Raw Normal View History

2018-01-07 04:44:47 +00:00
<:Head>
2018-01-21 19:07:16 +00:00
<title>Pinafore Local</title>
2018-01-07 04:44:47 +00:00
</:Head>
<Layout page='local'>
<LazyPage :pageComponent :params />
2018-01-07 04:44:47 +00:00
</Layout>
<script>
2018-01-19 07:37:43 +00:00
import Layout from './_components/Layout.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/local.html'
2018-01-07 04:44:47 +00:00
export default {
components: {
2018-01-19 07:37:43 +00:00
Layout,
LazyPage
},
data: () => ({
pageComponent
})
2018-01-19 07:37:43 +00:00
}
2018-01-07 04:44:47 +00:00
</script>