Markwon/docs/.vuepress/components/GithubUser.vue
2018-08-21 19:02:20 +03:00

22 lines
431 B
Vue

<template>
<a :href="githubUserProfileHref" target="_blank" rel="noopener noreferrer"><b>{{linkContent}}</b><OutboundLink/></a>
</template>
<script>
export default {
name: "GithubUser",
props: {
name: { required: true }
},
computed: {
githubUserProfileHref: function() {
return "https://github.com/" + this.name;
},
linkContent: function() {
return "@" + this.name;
}
}
};
</script>