pinafore/routes/search.html

21 wiersze
434 B
HTML

<svelte:head>
<title>Pinafore – Search</title>
</svelte:head>
<Layout page='search'>
<LazyPage {pageComponent} {params} />
</Layout>
<script>
import Layout from './_components/Layout.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/search.html'
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>