Skip to content

Instantly share code, notes, and snippets.

@cristijora
Created June 30, 2019 16:38
Show Gist options
  • Save cristijora/a917f46028b659a719c0a1d96535a31e to your computer and use it in GitHub Desktop.
Save cristijora/a917f46028b659a719c0a1d96535a31e to your computer and use it in GitHub Desktop.
Computed side effects
export default {
data() {
return {
array: [1, 2, 3]
};
},
computed: {
reversedArray() {
return this.array.reverse(); // SIDE EFFECT - mutates a data property
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment