Files
sapper/test/apps/encoding/src/routes/fünke.html
2018-10-07 18:23:43 -04:00

11 lines
180 B
HTML

<h1>{phrase}</h1>
<script>
export default {
preload() {
return this.fetch('fünke.json').then(r => r.json()).then(phrase => {
return { phrase };
});
}
};
</script>