repeatModeConst.ts (bf6e62f27bf21a011995d7561e0093fae1a2d72e) | repeatModeConst.ts (242960d3fe7b3524027774192799cef72e2b818e) |
---|---|
1import MusicQueue from "@/common/musicQueue"; | 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 | 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 |