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