Skip to content

Instantly share code, notes, and snippets.

@LORD-KAY
Last active January 9, 2023 09:46
Show Gist options
  • Save LORD-KAY/79b2a4378f64aa796d34b3d6474f7b9c to your computer and use it in GitHub Desktop.
Save LORD-KAY/79b2a4378f64aa796d34b3d6474f7b9c to your computer and use it in GitHub Desktop.
Get a vuex store state value using getters
<template>
<div>
<h1>All todo items </h1>
<div v-for="(item,index) in $store.getters['getAllTodos']" :key="index">
<span>{{ item }}</span>
</div>
</div>
</template>
<script>
export default {
data: () => ({
}),
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment