mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00
17 lines
318 B
Vue
17 lines
318 B
Vue
<template>
|
|
<p :class="[`text-${align}`, 'mb-0']">
|
|
<nuxt-link to="/" class="btn btn-outline-primary btn-sm">
|
|
<Icon v="home" />
|
|
<T>home.link</T>
|
|
</nuxt-link>
|
|
</p>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
align: { default: 'right' },
|
|
},
|
|
};
|
|
</script>
|