mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-11 17:50:32 +08:00
11 lines
202 B
Svelte
11 lines
202 B
Svelte
<script lang="ts">
|
|
import { fly } from 'svelte/transition';
|
|
export let pathname: string = '';
|
|
</script>
|
|
|
|
{#key pathname}
|
|
<div in:fly={{ x: 0, y: 23, duration: 450 }}>
|
|
<slot />
|
|
</div>
|
|
{/key}
|