Files
2025-08-18 10:01:04 +08:00

25 lines
299 B
JavaScript

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
//蓝牙设置
import Bluetooth from '@/store/bluetooth/index.js'
const store = new Vuex.Store({
modules: {
Bluetooth
},
state: {
sysinfo: uni.getSystemInfoSync(),//系统信息
},
mutations: {
}
})
export default store