mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 19:45:26 +00:00
9 lines
168 B
Svelte
9 lines
168 B
Svelte
<script>
|
|
import { stores } from '@sapper/app';
|
|
const { page } = stores();
|
|
</script>
|
|
|
|
<h1>{$page.params.rest.join(',')}</h1>
|
|
|
|
<a href="xyz/abc/qwe/deep.json">deep</a>
|