You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
learn-wgpu/docs/.vuepress/components/AutoGithubLink.vue

24 lines
485 B
Vue

<template>
<div class="auto-github-link">
<a :href="link" target="_blank" rel="noopener noreferrer">Check out the code!</a>
<OutboundLink/>
</div>
</template>
<script>
const GITHUB_REPO = "https://github.com/sotrh/learn-wgpu/tree/master/code"
export default {
name: "AutoGithubLink",
computed: {
link() {
return GITHUB_REPO + this.$page.path;
}
}
}
</script>
<style>
.auto-github-link {
margin-top: 1rem;
}
</style>