mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-18 11:21:37 -04:00
22 lines
322 B
Vue
22 lines
322 B
Vue
<template>
|
|
<span>
|
|
<img :src="src" alt=""/>
|
|
{{ name }}
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
name: { required: true },
|
|
src: { required: true },
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
img {
|
|
height: 1rem;
|
|
}
|
|
</style>
|