lbry.tech/.vuepress/components/EditLink.vue

26 lines
662 B
Vue
Raw Normal View History

2018-04-20 15:17:16 +02:00
<template>
<div class="edit-link mt-3">
<v-divider></v-divider>
<p class="mt-2"><a v-bind:href="githubUrl" target="_blank" class="grey--text text--darken-1">Edit this page on Github</a></p>
</div>
</template>
<script>
export default {
data () {
return {
githubUrl: ''
}
},
name: 'EditLink',
created () {
this.githubUrl = 'https://github.com/'+ this.$site.themeConfig.repo + '/edit/' + this.$site.themeConfig.docsBranch;
if(this.$page.path == '/') {
this.githubUrl = this.githubUrl + '/README.md';
} else {
this.githubUrl = this.githubUrl + this.$page.path.replace('.html', '.md');
}
}
}
</script>