编辑
2023-04-14
CustomCli
0

说明

脚手架全称:Command-Line Interface 译为命令行界面,基于终端文本界面,依靠输入命令执行

编辑
2023-04-13
Vuex-Version3
0

module

说明

解决单一状态树,项目解构复杂臃肿时;vuex提供模块功能将store分割为module,每个module都包含state、getters、mutations、actions以及子模块module

编辑
2023-04-13
Vuex-Version3
0

mapState

说明

用于组件获取state中状态

编辑
2023-04-13
Vuex-Version3
0

action

说明

Action类似于mutation,不同在于:

编辑
2023-04-12
Vuex-Version3
0

mutations

说明

用于更改Vuex的store中的状态,即更改state中的数据的唯一方法是commit提交mutations