Files
sapper/test/apps/basics/src/routes/b/index.html
2018-10-07 18:23:43 -04:00

11 lines
175 B
HTML

<h1>{letter}</h1>
<script>
export default {
preload() {
return this.fetch('b.json').then(r => r.json()).then(letter => {
return { letter };
});
}
};
</script>