Merge pull request #1900 from lepture/patch-2

Patch fix on Avatar component
This commit is contained in:
Aresn 2017-09-21 16:15:08 +08:00 committed by GitHub
commit 61cd2bf47a

View file

@ -71,7 +71,7 @@
methods: {
setScale () {
this.isSlotShow = !this.src && !this.icon;
if (this.$slots.default) {
if (this.$refs.children) {
const childrenWidth = this.$refs.children.offsetWidth;
const avatarWidth = this.$el.getBoundingClientRect().width;
// add 4px gap for each side to get better performance
@ -90,4 +90,4 @@
this.setScale();
}
};
</script>
</script>