Skip to content

Instantly share code, notes, and snippets.

@djirdehh
Created January 23, 2021 23:32
Show Gist options
  • Select an option

  • Save djirdehh/738052a45ef7f7c8671b1cf74dddc395 to your computer and use it in GitHub Desktop.

Select an option

Save djirdehh/738052a45ef7f7c8671b1cf74dddc395 to your computer and use it in GitHub Desktop.
import { reactive } from "vue";
export const store = {
state: reactive({
numbers: [1, 2, 3]
}),
addNumber(newNumber) {
this.state.numbers.push(newNumber);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment