Skip to content

Instantly share code, notes, and snippets.

@fadamakis
Created June 6, 2022 18:05
Show Gist options
  • Save fadamakis/4aa804ad39c999a7bd160ad9ccc66cf0 to your computer and use it in GitHub Desktop.
Save fadamakis/4aa804ad39c999a7bd160ad9ccc66cf0 to your computer and use it in GitHub Desktop.
Reactive API
import { reactive } from "vue";
export const store = {
state: reactive({
heroes: ['Aragorn', 'Legolas', 'Gimli', 'Gandalf']
}),
addHero(hero) {
this.state.heroes.push(hero);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment