0 votes
in VueJS by
What are the principles enforced by vuex?

1 Answer

0 votes
by

Vuex enforces below high-level principles,

  1. The Application-level state need to be centralized in the store
  2. The state should be mutated by committing mutations only(i.e, for synchronous transactions)
  3. The actions should be used for asynchronous transactions.

Related questions

0 votes
asked Sep 9, 2023 in VueJS by DavidAnderson
0 votes
asked Sep 9, 2023 in VueJS by DavidAnderson
...