mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
Dashboard tweaks
This commit is contained in:
parent
3bd485e7e4
commit
5de6bf9cfa
4 changed files with 24 additions and 0 deletions
8
dashboard/src/components/dashboard/GuildAccess.vue
Normal file
8
dashboard/src/components/dashboard/GuildAccess.vue
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<h1>Guild Access</h1>
|
||||||
|
<p>
|
||||||
|
<img class="inline-block w-16 mr-4" style="vertical-align: -20px" src="../../img/squint.png"> Or here
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</template>
|
8
dashboard/src/components/dashboard/GuildInfo.vue
Normal file
8
dashboard/src/components/dashboard/GuildInfo.vue
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<h1>Guild Info</h1>
|
||||||
|
<p>
|
||||||
|
<img class="inline-block w-16 mr-4" style="vertical-align: -20px" src="../../img/squint.png"> What are you doing here
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</template>
|
BIN
dashboard/src/img/squint.png
Normal file
BIN
dashboard/src/img/squint.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
|
@ -64,10 +64,18 @@ export const router = new VueRouter({
|
||||||
path: "",
|
path: "",
|
||||||
component: () => import("./components/dashboard/GuildList.vue"),
|
component: () => import("./components/dashboard/GuildList.vue"),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "guilds/:guildId/info",
|
||||||
|
component: () => import("./components/dashboard/GuildInfo.vue"),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: "guilds/:guildId/config",
|
path: "guilds/:guildId/config",
|
||||||
component: () => import("./components/dashboard/GuildConfigEditor.vue"),
|
component: () => import("./components/dashboard/GuildConfigEditor.vue"),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "guilds/:guildId/access",
|
||||||
|
component: () => import("./components/dashboard/GuildAccess.vue"),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Reference in a new issue