#
whycq
2023-10-05 15a71f30d03e47a9fddb690ee4f9462b47e82707
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
    }
})