Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created January 19, 2018 07:04
Show Gist options
  • Save lmiller1990/68118061b4853afc069c45e7b0eccb00 to your computer and use it in GitHub Desktop.
Save lmiller1990/68118061b4853afc069c45e7b0eccb00 to your computer and use it in GitHub Desktop.
storiesOf('Profile', module)
.add('with a profile image', () => ({
components: { Profile },
data () {
return {
image: 'https://vuejs.org/images/logo.png',
profileData: {
name: 'Lachlan',
location: 'Tokyo',
about: 'Software dev, steem and AI/ML'
}
}
},
template: `
<profile
:profile-image="image"
:profile-data="profileData"
/>
`
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment