Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created January 19, 2018 06:59
Show Gist options
  • Save lmiller1990/abae7100cd45b32c26098a81ad3ef7bb to your computer and use it in GitHub Desktop.
Save lmiller1990/abae7100cd45b32c26098a81ad3ef7bb to your computer and use it in GitHub Desktop.
<script>
...
data () {
return {
result: {},
loaded: false
}
},
mounted () {
steem.api.setOptions({ url: 'https://api.steemit.com' })
steem.api.getAccounts(['xenetics'], (err, result) => {
this.result = {...JSON.parse(result[0].json_metadata)}
this.loaded = true
})
}
...
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment