Pinafore-Web-Client-Frontend/routes/search.html

21 lines
420 B
HTML
Raw Normal View History

2018-02-07 05:54:49 +01:00
<:Head>
<title>Pinafore Search</title>
</:Head>
<Layout page='search'>
<LazyPage :pageComponent :params />
2018-02-07 05:54:49 +01:00
</Layout>
<script>
import Layout from './_components/Layout.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/search.html'
2018-02-07 05:54:49 +01:00
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
2018-02-07 05:54:49 +01:00
}
</script>