You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
455 B
20 lines
455 B
// 1. 导入 Vue 和 Vuex
|
|
import Vue from 'vue';
|
|
// uniapp 已默认安装,不需要重新下载
|
|
import Vuex from 'vuex';
|
|
// 导入 search.js 暴露的对象
|
|
// import search from './modules/search';
|
|
import user from './modules/user';
|
|
// import video from './modules/video';
|
|
|
|
// 2. 安装 Vuex 插件
|
|
Vue.use(Vuex);
|
|
// 3. 创建 store 实例
|
|
const store = new Vuex.Store({
|
|
modules: {
|
|
// search,
|
|
user
|
|
// video
|
|
}
|
|
});
|
|
export default store;
|