2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-27 14:45:28 +03:00
Files
maska/test/svelte/Options.svelte
T
2024-06-02 16:49:41 +03:00

14 lines
248 B
Svelte

<script lang="ts">
import { maska } from '../../src/svelte'
const options = {
mask: '#-#',
eager: false
}
</script>
<main>
<input type="checkbox" bind:checked={options.eager} />
<input type="text" use:maska={options} />
</main>