Files
sapper/test/app/routes/fünke.html
2018-09-02 23:00:39 -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>