mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 14:11:50 +00:00
Dashboard: rename component folders to lowercase
This commit is contained in:
parent
f186e5c61f
commit
b065b1b18e
10 changed files with 8 additions and 8 deletions
|
@ -17,23 +17,23 @@ export const router = new VueRouter({
|
||||||
// Docs
|
// Docs
|
||||||
{
|
{
|
||||||
path: "/docs",
|
path: "/docs",
|
||||||
component: () => import("./components/Docs/Layout.vue"),
|
component: () => import("./components/docs/Layout.vue"),
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: "",
|
path: "",
|
||||||
component: () => import("./components/Docs/Introduction.vue"),
|
component: () => import("./components/docs/Introduction.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "configuration-format",
|
path: "configuration-format",
|
||||||
component: () => import("./components/Docs/ConfigurationFormat.vue"),
|
component: () => import("./components/docs/ConfigurationFormat.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "permissions",
|
path: "permissions",
|
||||||
component: () => import("./components/Docs/Permissions.vue"),
|
component: () => import("./components/docs/Permissions.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "plugin-configuration",
|
path: "plugin-configuration",
|
||||||
component: () => import("./components/Docs/PluginConfiguration.vue"),
|
component: () => import("./components/docs/PluginConfiguration.vue"),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -41,16 +41,16 @@ export const router = new VueRouter({
|
||||||
// Dashboard
|
// Dashboard
|
||||||
{
|
{
|
||||||
path: "/dashboard",
|
path: "/dashboard",
|
||||||
component: () => import("./components/Dashboard/Layout.vue"),
|
component: () => import("./components/dashboard/Layout.vue"),
|
||||||
beforeEnter: authGuard,
|
beforeEnter: authGuard,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: "",
|
path: "",
|
||||||
component: () => import("./components/Dashboard/GuildList.vue"),
|
component: () => import("./components/dashboard/GuildList.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "guilds/:guildId/config",
|
path: "guilds/:guildId/config",
|
||||||
component: () => import("./components/Dashboard/GuildConfigEditor.vue"),
|
component: () => import("./components/dashboard/GuildConfigEditor.vue"),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue