Skip to content

Commit

Permalink
Frontend: added profile picture component - part of #135
Browse files Browse the repository at this point in the history
  • Loading branch information
OrAbramovich committed Jan 5, 2018
1 parent e7f40aa commit 271f985
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions views/src/components/user-profile/ProfilePicture.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<template>
<div>
<b-img center rounded="circle" width="150" height="150" :src=img_src alt="img" class="m-1" />
</div>
</template>

<script>
import bImg from 'bootstrap-vue/es/components/image/img';
export default {
props: [
'img_src'
],
components:{
bImg
}
}
</script>

<style scoped>
</style>

0 comments on commit 271f985

Please sign in to comment.