mirror of
https://github.com/IoTManagerProject/IoTManagerWeb.git
synced 2026-03-28 07:52:32 +03:00
15 lines
459 B
Svelte
15 lines
459 B
Svelte
<script>
|
|
import Card from "../components/Card.svelte";
|
|
|
|
export let wigetsUpdate;
|
|
export let layoutJson;
|
|
|
|
export let showModal = () => {};
|
|
export let syntaxHighlight = (json) => {};
|
|
</script>
|
|
|
|
<button on:click={() => showModal()} type="button"> Toggle modal </button>
|
|
<Card title="Редактор JSON">
|
|
<textarea on:input={wigetsUpdate} rows="10" class="ipt-big w-full" id="text1">{syntaxHighlight(JSON.stringify(layoutJson))}</textarea>
|
|
</Card>
|