skyouc
2025-01-04 9e901f8641fb3f347d8fb6cd400e8d2f1278baf5
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
    }
})