How do I break up my vuex file?

后端 未结 6 752
迷失自我
迷失自我 2020-12-24 08:27

I have a vuex file with a growing mass of mutators, but I\'m not sure of the correct way of splitting it out into different files.

Because I have:

cons

6条回答
  •  天涯浪人
    2020-12-24 09:01

    You can break them into different modules. That way you can keep all related mutations, getters, state and actions in separate files. The documentation explains it better than I can: https://vuex.vuejs.org/en/modules.html

提交回复
热议问题