You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
227 B

4 years ago
  1. <script lang="ts">
  2. import type { ModalData } from "../stores/modal";
  3. import modalStore from "../stores/modal";
  4. export let name: ModalData["name"] = "none";
  5. </script>
  6. {#if $modalStore.name === name}
  7. <slot></slot>
  8. {/if}