Skip to content

Instantly share code, notes, and snippets.

@fadamakis
Last active August 1, 2022 08:29
Show Gist options
  • Save fadamakis/a22111c75933b0d75c84dedaeadab84f to your computer and use it in GitHub Desktop.
Save fadamakis/a22111c75933b0d75c84dedaeadab84f to your computer and use it in GitHub Desktop.
<script>
import { useFellowship } from '@/stores/fellowship'
export default {
setup() {
const fellowship = useFellowship()
// Access to the state
// can be done directly
console.log(fellowship.heroes)
// Using an action
fellowship.addHero('Boromir')
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment