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
Raw Normal View History

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