Files
meshcore-web/src/js/GlobalState.js
2025-02-13 01:02:27 +13:00

11 lines
171 B
JavaScript

import {reactive} from "vue";
// global state
const globalState = reactive({
connection: null,
selfInfo: null,
contacts: [],
});
export default globalState;