mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-19 12:03:12 -04:00
12 lines
187 B
Vue
12 lines
187 B
Vue
<template>
|
|
<span :class="['fal', 'fa-' + v, 'fa-fw']"></span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
v: { required: true },
|
|
}
|
|
}
|
|
</script>
|