1.0.2 • Published 2 years ago

svelte-exec v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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.
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0-rc4

2 years ago

1.0.0-rc3

2 years ago

1.0.0-rc2

2 years ago

1.0.0-rc1

2 years ago

1.0.0

2 years ago