pinafore/routes/index.html

20 lines
245 B
HTML
Raw Normal View History

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