Created
January 19, 2018 07:04
-
-
Save lmiller1990/68118061b4853afc069c45e7b0eccb00 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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