mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-04 10:34:07 -04:00
18 lines
357 B
Vue
18 lines
357 B
Vue
<template>
|
|
<nuxt-link v-if="locale === config.locale" :to="link">
|
|
<slot></slot>
|
|
</nuxt-link>
|
|
<a v-else :href="locales[locale].url + link">
|
|
<slot></slot>
|
|
</a>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
link: { required: true },
|
|
locale: { required: true },
|
|
},
|
|
};
|
|
</script>
|