This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/Avatar.vue

29 lines
544 B
Vue

<template>
<img :src="gravatar" alt="" class="rounded-circle"/>
</template>
<script>
import { gravatar } from "../src/helpers";
export default {
props: {
user: { required: true },
size: { 'default': 128 }
},
data() {
return {
gravatar: gravatar(this.user, this.size),
};
},
}
</script>
<style lang="scss" scoped>
$size: 6rem;
img {
width: 100%;
max-width: $size;
max-height: $size;
}
</style>