mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-04 10:34:07 -04:00
17 lines
334 B
Vue
17 lines
334 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>
|