Files
sapper/test/app/routes/about.html
2018-03-17 13:18:18 -04:00

21 lines
432 B
HTML

<:Head>
<title>About</title>
</:Head>
<h1>About this site</h1>
<p>This is the 'about' page. There's not much here.</p>
<button class='goto' on:click='goto("blog/what-is-sapper")'>What is Sapper?</button>
<button class='prefetch' on:click='prefetch("blog/why-the-name")'>Why the name?</button>
<script>
import { goto, prefetch } from '../../../runtime.js';
export default {
methods: {
goto,
prefetch
}
};
</script>