pinafore/routes/index.html

20 wiersze
264 B
HTML
Czysty Zwykły widok Historia

2018-01-06 23:51:25 +00:00
<:Head>
<title>Sapper project template</title>
</: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>