mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
13 lines
208 B
TypeScript
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,
|
|
};
|