mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-04 02:24:39 -04:00
23 lines
373 B
Vue
23 lines
373 B
Vue
<template>
|
|
<span :title="alt">
|
|
<img :src="img" alt=""/>
|
|
{{ name }}
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
name: { required: true },
|
|
alt: { required: true },
|
|
img: { required: true },
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
img {
|
|
height: 1rem;
|
|
}
|
|
</style>
|