2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-15 11:59:38 +03:00

chore: bump deps

This commit is contained in:
Alexander Shabunevich
2025-02-01 19:01:52 +03:00
parent 2975377813
commit 07cf2efe48
4 changed files with 1415 additions and 963 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
<script lang="ts">
<script>
import BindValue from './BindValue.svelte'
import DataAttr from './DataAttr.svelte'
import Event from './Event.svelte'
@@ -7,11 +7,11 @@
import Options from './Options.svelte'
import Simple from './Simple.svelte'
let component = Simple
let Component = $state(Simple)
</script>
<main>
<select bind:value={component}>
<select bind:value={Component}>
<option value={BindValue}>BindValue</option>
<option value={DataAttr}>DataAttr</option>
<option value={Event}>Event</option>
@@ -22,7 +22,7 @@
</select>
<div class="comp">
<svelte:component this={component} />
<Component />
</div>
</main>