Add mock catalog

This commit is contained in:
ZXY101
2023-08-01 16:29:02 +02:00
parent 3c2199b06a
commit 995c6a98c5
20 changed files with 291 additions and 100 deletions

View File

@@ -1,18 +0,0 @@
<script lang="ts">
import img from '$lib/assets/000a.jpg';
import Button from '$lib/components/Button.svelte';
import { pz, Panzoom } from '$lib/panzoom';
function test() {
$pz?.moveTo(0, 0);
}
</script>
<div>
<Button variant="primary" on:click={test}>Click</Button>
<Panzoom>
<p draggable="false">my selectable tex</p>
<img draggable="false" src={img} alt="a" />
</Panzoom>
</div>