This commit is contained in:
Kristian Polso 2018-05-04 14:10:57 +03:00
parent 22615fa010
commit a80c6950bc
4 changed files with 35 additions and 1 deletions

View file

@ -0,0 +1,24 @@
<template>
<ul id="sitemap">
<li v-for="route in routes">
<router-link v-bind:to="route.path">{{ route.path }}</router-link>
</li>
</ul>
</template>
<script>
export default {
data: function() {
var routes = [];
this.$router.options.routes.forEach(function(item) {
if(item.path != "/" && item.path != "*") {
routes.push(item);
}
});
return {
routes: routes
}
},
name: 'Sitemap'
}
</script>

View file

@ -1 +0,0 @@

View file

@ -37,6 +37,8 @@
<edit-link :path="this.$page.path"></edit-link>
<router-link to="/sitemap.html">Sitemap</router-link>
</v-flex>
</v-layout>
@ -65,6 +67,8 @@
<edit-link :path="this.$page.path"></edit-link>
<router-link to="/sitemap.html">Sitemap</router-link>
</v-flex>
</v-layout>

7
sitemap.md Normal file
View file

@ -0,0 +1,7 @@
---
title: Sitemap
---
# Sitemap
<Sitemap></Sitemap>