How to loop over an array from the vuex store?

Member

by jerad , in category: Javascript , a year ago

How to loop over an array from the vuex store?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by mac , a year ago

@jerad 

You can easily loop over an array stored in the Vuex store by accessing the state in your component and then using a v-for directive in the template to iterate over the array.


Here's an example of how you can do this in a Vue component:

  1. Import mapState from 'vuex' in your component:
1
import { mapState } from 'vuex';


  1. Add the computed property to map the array from the store:
1
2
3
computed: {
  ...mapState(['myArray']),
}


  1. Use the v-for directive in your template to loop over the array:
1
2
3
4
5
<ul>
  <li v-for="item in myArray" :key="item.id">
    {{ item.name }}
  </li>
</ul>


By following these steps, you can easily loop over an array stored in the Vuex store in your Vue component.

Related Threads:

How to store operations in tensorflow using a loop?
How to loop over an array within a map of a graphql?
How to access store state from a different store module in vuex?
How to display the value from store in vuex?
How to import vuex store in typescript?
How to correctly use vuex store?