Loading world works

This commit is contained in:
2024-07-12 12:44:37 +02:00
parent 79bef033f3
commit 0fcd5c4d76
20 changed files with 228 additions and 177 deletions

View File

@ -13,7 +13,7 @@
<input v-model="tileName" class="input-cyan" type="text" name="name" placeholder="Tile #1" />
</div>
<div class="w-full flex flex-col mb-5">
<label class="mb-1.5 font-titles" for="origin-x">Tags</label>
<label class="mb-1.5 font-titles" for="origin-x">Tags</label>
<ChipsInput v-model="tileTags" @update:modelValue="tileTags = $event" />
</div>
<button class="btn-cyan px-[15px] py-1.5 min-w-[100px]" type="submit">Save</button>
@ -88,7 +88,7 @@ function saveTile() {
{
id: selectedTile.value.id,
name: tileName.value,
tags: tileTags.value,
tags: tileTags.value
},
(response: boolean) => {
if (!response) {