0.2.1 • Published 11 months ago

@rabee-org/svelte-modal-manager v0.2.1

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

svelte-modal-manager

npm version

svelte-modal-manager is ...

Demo

Install

npm install @rabee-org/svelte-modal-manager --save

Usage

<script>
  import { onMount } from 'svelte';
  import { modalAlert } from '@rabee-org/svelte-modal-manager';
  import { modalConfirm } from '$modal';

  onMount(async () => {
    let modal = modalAlert.open({
      title: 'Hello, svelte-modal-manager',
    });
    
    await modal.awaitClose();

    const ok = await modalConfirm.openSync('OK?');
  });
</script>

License

MIT