chen.llin
2026-01-21 bf28bf14ee5db70354003d92967eeaa399e810b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Vue from 'vue';
import Vuex from 'vuex';
 
//vuex模块引入
import Bluetooth from './modules/bluetooth.js';  //存储蓝牙设备信息
//vue使用vuex;
Vue.use(Vuex);
 
export default new Vuex.Store({
    // 开启严格模式,仅开发模式下启用,发布环境下取消
    strict: true,
    modules:{
       Bluetooth
    }
})