1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00

20 lines
245 B
HTML
Raw Normal View History

2018-01-06 15:51:25 -08:00
<:Head>
2018-01-06 21:52:41 -08:00
<title>Home</title>
2018-01-06 15:51:25 -08:00
</:Head>
<Layout page='home'>
2018-01-06 21:50:56 -08:00
<h1>Home page!</h1>
2018-01-06 15:51:25 -08:00
2018-01-06 21:50:56 -08:00
<p>This is the home page.</p>
2018-01-06 15:51:25 -08:00
</Layout>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
}
};
</script>