mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-15 03:30:31 +08:00
11 lines
191 B
Svelte
11 lines
191 B
Svelte
|
<script lang="ts">
|
||
|
import { fade } from 'svelte/transition';
|
||
|
export let pathname: string = '';
|
||
|
</script>
|
||
|
|
||
|
{#key pathname}
|
||
|
<div in:fade={{ duration: 300 }}>
|
||
|
<slot />
|
||
|
</div>
|
||
|
{/key}
|