Skip to content

Instantly share code, notes, and snippets.

@magyarn
Created April 18, 2019 14:31
Show Gist options
  • Save magyarn/843c6c7d6e7480f1a47597a1e8d0f43a to your computer and use it in GitHub Desktop.
Save magyarn/843c6c7d6e7480f1a47597a1e8d0f43a to your computer and use it in GitHub Desktop.
<script>
...
export default {
...
created() {
this.fetchData()
},
data() {
...
},
computed: {
...
},
methods: {
fetchData() {
this.fetchImageInfo()
this.fetchImageSizes()
},
fetchImageInfo() {
...
},
fetchImageSizes() {
...
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment