xref: /MusicFree/src/constants/repeatModeConst.ts (revision bf6e62f27bf21a011995d7561e0093fae1a2d72e)
1import MusicQueue from "@/common/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