Vuex模块化写法
一、创建store
目录,在目录中创建modules
目录和index.js
文件,在modules
目录中创建vuex模块文件
二、在index.js中编写:
// vuex入口文件
import Vue from 'vue'
import Vuex from 'vuex'
import home from
2024-02-08 11:46:22