mirror of
https://github.com/NoCrypt/migu.git
synced 2026-03-13 06:25:55 +00:00
23 lines
410 B
Svelte
23 lines
410 B
Svelte
<script>
|
|
import { getContext } from 'svelte'
|
|
import { TABS } from './Tabs.svelte'
|
|
|
|
const panel = {}
|
|
const { registerPanel, selectedPanel } = getContext(TABS)
|
|
|
|
registerPanel(panel)
|
|
</script>
|
|
|
|
{#if $selectedPanel === panel}
|
|
<slot />
|
|
{/if}
|
|
|
|
<style>
|
|
slot {
|
|
margin-bottom: 10px;
|
|
padding: 40px;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 0 0 .5rem .5rem;
|
|
border-top: 0;
|
|
}
|
|
</style>
|