pinafore/routes/local.html

21 lines
449 B
HTML

<Title name="Local" />
<Layout page='local'>
<LazyPage {pageComponent} {params} />
</Layout>
<script>
import Layout from './_components/Layout.html'
import Title from './_components/Title.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/local.html'
export default {
components: {
Layout,
Title,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>