mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-11 19:04:30 +00:00
7 lines
116 B
Svelte
7 lines
116 B
Svelte
<script>
|
|
import { stores } from '@sapper/app';
|
|
const { page } = stores();
|
|
</script>
|
|
|
|
<h1>{$page.params.slug}</h1>
|