mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
40fcbfd576
- plus other tiny changes
14 lines
268 B
TypeScript
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,
|
|
};
|