mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
1. Initial music loads twice on app start, a second load is triggered as soon as the page is clicked. So I close autounlock 2. Unplayable music can’t be play
33 lines
616 B
JavaScript
33 lines
616 B
JavaScript
import { playlistCategories } from "@/utils/staticData";
|
|
|
|
export default {
|
|
player: {
|
|
enable: false,
|
|
show: true,
|
|
playing: false,
|
|
shuffle: false,
|
|
volume: 1,
|
|
repeat: "off", // on | off | one
|
|
currentTrack: {},
|
|
notShuffledList: [],
|
|
list: [],
|
|
listInfo: {
|
|
type: "",
|
|
id: "",
|
|
},
|
|
},
|
|
settings: {
|
|
playlistCategories,
|
|
lang: null,
|
|
appearance: "auto",
|
|
musicQuality: 320000,
|
|
showGithubIcon: true,
|
|
showPlaylistsByAppleMusic: true,
|
|
},
|
|
data: {
|
|
user: {},
|
|
likedSongPlaylistID: 0,
|
|
lastRefreshCookieDate: 0,
|
|
loginMode: null,
|
|
},
|
|
};
|