pinafore/routes/index.html

20 lines
245 B
HTML
Raw Normal View History

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