Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created January 18, 2018 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmiller1990/c6f58353eef242ea35a847da51c062ae to your computer and use it in GitHub Desktop.
Save lmiller1990/c6f58353eef242ea35a847da51c062ae to your computer and use it in GitHub Desktop.
<template>
<div>
<img :src="profileImage">
</div>
</template>
<script>
export default {
name: 'Profile',
props: {
profileImage: {
type: String,
required: true
}
}
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment