Files
sapper/test/app/src/routes/about.html
2018-09-30 14:55:54 -04:00

19 lines
351 B
HTML

<svelte:head>
<title>About</title>
</svelte:head>
<h1>About this site</h1>
<p>This is the 'about' page. There's not much here.</p>
<button class='prefetch' on:click='prefetch("blog/why-the-name")'>Why the name?</button>
<script>
import { prefetch } from '../../__sapper__/client.js';
export default {
methods: {
prefetch
}
};
</script>