Skip to content

Instantly share code, notes, and snippets.

@codemwnci
Created August 25, 2017 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codemwnci/7d33978d90617718d7f7272a8cc653b0 to your computer and use it in GitHub Desktop.
Save codemwnci/7d33978d90617718d7f7272a8cc653b0 to your computer and use it in GitHub Desktop.
Load all todos on startup
mounted() {
axios.get('http://localhost:9000/todo/').then(response => {
this.todos = response.data;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment