Skip to content

Instantly share code, notes, and snippets.

@andreipfeiffer
Last active February 2, 2017 11:53
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 andreipfeiffer/375af939356d1d757008099d48e514a0 to your computer and use it in GitHub Desktop.
Save andreipfeiffer/375af939356d1d757008099d48e514a0 to your computer and use it in GitHub Desktop.
// parent component
template: '<Child @save="saveData" />',
methods: {
saveData() {/**/};
}
// child component
template: '<button @click="onClick">Save</button>',
methods: {
onClick() {
// emit a custom "save" event
this.$emit('save');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment