Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created January 19, 2018 07:03
Show Gist options
  • Save lmiller1990/015965f770017aaba38d652ff744a03b to your computer and use it in GitHub Desktop.
Save lmiller1990/015965f770017aaba38d652ff744a03b to your computer and use it in GitHub Desktop.
<template>
<div>
<img :src="profileImage">
<div>
Name: {{ profileData.name }}
</div>
<div>
Location: {{ profileData.location }}
</div>
<div>
About: {{ profileData.about }}
</div>
</div>
</template>
<script>
export default {
name: 'Profile',
props: {
profileImage: {
type: String,
required: true
},
profileData: {
type: Object,
required: true
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment