Files
swingmusic-extended/src/composables/state.ts
T
geoffrey45 40fcbfd576 add the albumhash prop to the fallback track object
- plus other tiny changes
2022-07-06 17:38:33 +03:00

14 lines
268 B
TypeScript

import { Track, AlbumInfo, Artist } from "./../interfaces";
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,
};