mirror of https://github.com/sveltejs/svelte
16 lines
330 B
16 lines
330 B
<script>
|
|
import { getContext, onDestroy } from 'svelte';
|
|
import { TABS } from './Tabs.svelte';
|
|
|
|
const panel = {};
|
|
const { registerPanel, unregisterPanel, selectedPanel } = getContext(TABS);
|
|
registerPanel(panel);
|
|
|
|
onDestroy(() => {
|
|
unregisterPanel(panel);
|
|
});
|
|
</script>
|
|
|
|
{#if $selectedPanel === panel}
|
|
<slot></slot>
|
|
{/if} |