Skip to content

amr3k/svelte-exec

Repository files navigation

Svelte-Exec

A tiny svelte component to emit a load event when the component is loaded.

Installation

npm install svelte-exec

Usage

<script>
	import Exec from 'svelte-exec';
</script>

<Exec on:load={() => {
  console.log('Hello World!');
}} />

In this example, when the component is loaded it will emit a load event, which can be listened to using the on:load syntax in the parent component.

Events

  • load: emitted when the component is loaded.

About

A tiny svelte component to emit a load event when the component is loaded.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published