mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-09 13:01:57 -04:00
18 lines
359 B
Vue
18 lines
359 B
Vue
<template>
|
||
<a v-if="hash" :href="`${base}/${hash}`" target="_blank" rel="noopener">{{ hash.substring(0, 8) }}</a>
|
||
<span v-else>–</span>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
props: {
|
||
hash: {},
|
||
},
|
||
data() {
|
||
return {
|
||
base: 'https://gitlab.com/PronounsPage/PronounsPage/-/commit',
|
||
};
|
||
},
|
||
};
|
||
</script>
|