8 lines
134 B
Svelte
Raw Normal View History

2024-11-17 22:28:29 +05:30
<script lang="ts">
import { page } from '$app/stores';
const hash = $derived($page.url.hash);
</script>
<p>hello</p>
<p>{hash}</p>