mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 19:45:26 +00:00
11 lines
180 B
HTML
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> |