mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-02 01:21:44 -04:00
20 lines
426 B
Vue
20 lines
426 B
Vue
<template>
|
|
<a v-if="isExternal" :href="to" target="_blank" rel="noopener"><slot></slot></a>
|
|
<nuxt-link v-else :to="to">
|
|
<slot></slot>
|
|
</nuxt-link>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
to: { required: true, type: String },
|
|
},
|
|
computed: {
|
|
isExternal() {
|
|
return this.to.startsWith('https://') || this.to.startsWith('http://');
|
|
},
|
|
},
|
|
};
|
|
</script>
|