Skip to content

Instantly share code, notes, and snippets.

@superMDguy
Created October 9, 2018 23:33
Show Gist options
  • Select an option

  • Save superMDguy/d6dd19b10e3bc6ea11c72f66281d7b82 to your computer and use it in GitHub Desktop.

Select an option

Save superMDguy/d6dd19b10e3bc6ea11c72f66281d7b82 to your computer and use it in GitHub Desktop.
function loadStuff() {
state.loading = true
fetch('//myapi.com/stuff')
.then(res => res.json())
.then(data => {
state.loading = false
state.stuff = data
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment