Files
swingmusic-extended/src/composables/state.ts
T
2022-07-06 17:53:53 +03:00

13 lines
208 B
TypeScript

import { ref } from "@vue/reactivity";
import { reactive } from "vue";
const loading = ref(false);
const settings = reactive({
uri: "http://127.0.0.1:9876",
});
export default {
loading,
settings,
};