Simple button component without default style.
You can install this package with npm
or yarn
npm install svelte-headless-button
yarn add svelte-headless-button
<script>
import Button from 'svelte-headless-button';
function handleClick(e) {
console.log('Clicked!');
}
</script>
<Button id="myButton" name="myButton" on:click={handleClick}>
My Button
</Button>
Name | Value |
---|---|
id |
The button id |
name |
The button name |
Event | Note |
---|---|
click |
Click Event |