mirror of
https://github.com/BradNut/svelteKitPageLoader
synced 2025-09-08 17:40:35 +00:00
18 lines
357 B
Svelte
18 lines
357 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { navigating } from '$app/stores';
|
||
|
|
|
||
|
|
import { loading } from '$lib/loading';
|
||
|
|
import Loading from '$lib/Loading.svelte';
|
||
|
|
|
||
|
|
$: $loading = !!$navigating;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
{$loading}
|
||
|
|
|
||
|
|
<slot />
|
||
|
|
|
||
|
|
<button on:click={() => $loading = true}>Set Loading</button>
|
||
|
|
|
||
|
|
<button on:click={() => $loading = false}>Stop Loading</button>
|
||
|
|
|
||
|
|
<Loading />
|