mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-05 02:51:23 -04:00
13 lines
227 B
Vue
13 lines
227 B
Vue
<template>
|
|
<span :class="['fa' + set, 'fa-' + v, 'fa-fw']"></span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
v: { required: true },
|
|
set: { default: 'l' },
|
|
}
|
|
}
|
|
</script>
|