This commit is contained in:
2026-01-03 18:00:01 +01:00
parent 26e0400f50
commit 96765342d1
10 changed files with 121 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div>
<div>
<h3>category : {{category.name}} <button @click="remove">Remove</button></h3>
<h3>category : {{category.name}} ({{category.id}})<button @click="remove">Remove</button></h3>
</div>
<hr>
</div>

View File

@@ -2,7 +2,11 @@
<div>
<div>
<h3>channel : {{channel.name}} <button @click="remove">Remove</button></h3>
<p>Type: {{ channel.channel_type }}</p>
<ul>
<li v-if="channel.server_id">Server: {{ channel.server_id }}</li>
<li v-if="channel.category_id">Category: {{ channel.category_id }}</li>
<li>Type: {{ channel.channel_type }}</li>
</ul>
</div>
<hr>
</div>

View File

@@ -1,7 +1,7 @@
<template>
<div>
<div>
<h3>server : {{server.name}} <button @click="remove">Remove</button></h3>
<h3>server : {{server.name}} ({{server.id}}) <button @click="remove">Remove</button></h3>
</div>
<hr>