xref: /MusicFree/src/constants/repeatModeConst.ts (revision 6704747af84cebd842b258efac7143542722fac5)
1import MusicQueue from "@/core/musicQueue";
2export default {
3    [MusicQueue.MusicRepeatMode.QUEUE]: {
4      icon: 'repeat',
5      text: '列表循环'
6    },
7    [MusicQueue.MusicRepeatMode.SINGLE]: {
8      icon: 'repeat-once',
9      text: '单曲循环'
10    },
11    [MusicQueue.MusicRepeatMode.SHUFFLE]: {
12      icon: 'shuffle',
13      text: '随机播放'
14    }
15  }
16