mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-18 21:45:12 +00:00
13 lines
247 B
HTML
13 lines
247 B
HTML
<script context="module">
|
|
export function preload({ params }) {
|
|
return this.fetch(`blog/${params.slug}.json`).then(r => r.json()).then(post => {
|
|
return { post };
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<script>
|
|
export let post;
|
|
</script>
|
|
|
|
<h1>{post.title}</h1> |