lbry.tech/content/.vuepress/components/Sitemap.vue
2018-06-20 17:08:47 -05:00

25 lines
509 B
Vue

<template>
<ul id="sitemap">
<li v-for="route in routes">
<router-link v-bind:to="route.path" :title="`Visit lbry.tech${route.path}`">{{ route.path }}</router-link>
</li>
</ul>
</template>
<script>
export default {
data: function () {
const routes = [];
this.$router.options.routes.forEach(item => {
if (item.path !== "/" && item.path !== "*") routes.push(item);
});
return {
routes: routes
}
},
name: "Sitemap"
};
</script>