- Removed world page for presentation

This commit is contained in:
Alexis
2020-06-16 15:34:11 +02:00
parent df9e857343
commit ce02db3cbb
3 changed files with 0 additions and 25 deletions

View File

@@ -24,10 +24,6 @@
text: 'Sortilèges', text: 'Sortilèges',
url: '/spells', url: '/spells',
}, },
{
text: 'Monde',
url: '/world',
},
] ]
} }
} }

View File

@@ -1,17 +0,0 @@
<template>
<section class="world-page">
</section>
</template>
<script>
export default {
name: 'world',
}
</script>
<style lang="scss">
.world-page{
position: relative;
}
</style>

View File

@@ -5,7 +5,6 @@
import Index from "./pages/index-page"; import Index from "./pages/index-page";
import Spells from "./pages/spells-page"; import Spells from "./pages/spells-page";
import SchoolSingle from "./pages/schools/single-school-page"; import SchoolSingle from "./pages/schools/single-school-page";
import World from "./pages/world-page";
// Routes // Routes
const routes = [ const routes = [
@@ -20,9 +19,6 @@ const routes = [
}, },
{ {
path: '/school/:id', component: SchoolSingle, props: true path: '/school/:id', component: SchoolSingle, props: true
},
{
path: '/world', component: World,
} }
]; ];