Changed: DB Params

This commit is contained in:
2025-03-20 12:35:13 +01:00
parent 8640a12439
commit b71b3d12ca
822 changed files with 134218 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<div
x-data="{darkMode: localStorage.getItem('darkMode') || localStorage.setItem('darkMode', 'system')}"
x-init="$watch('darkMode', val => localStorage.setItem('darkMode', val))"
:class="{'dark': darkMode === 'dark' || (darkMode === 'system' && window.matchMedia('(prefers-color-scheme: dark)').matches)}"
>
</div>
<div x-data="{ count: 0 }">
<button
x-on:click="count++"
>Increment</button>
<span x-text="count"></span>
</div>
<div x-data="{ count: 0 }">
<button
@click="count++"
>Increment</button>
<span x-text="count"></span>
</div>