├── .editorconfig ├── .gitignore ├── README.md ├── SECURITY.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── App.vue ├── assets ├── cry.png ├── img │ ├── latest.png │ ├── ranking.png │ ├── recommend.png │ ├── singer.png │ ├── singerDetail.png │ ├── songMenu.png │ └── songMenuDetail.png └── logo.png ├── axios └── axios.js ├── components ├── Login │ └── phoneLogin.vue ├── commentsTable │ └── commentsTable.vue ├── lyric │ ├── lyric.vue │ └── playlist │ │ ├── lyrics.vue │ │ └── playlist.vue ├── musicPlayer │ └── musicPlayer.vue ├── register │ └── register.vue ├── songOutline │ ├── albumOutline.vue │ ├── highOutline.vue │ ├── musicOutline.vue │ ├── singerOutline.vue │ └── songOutline.vue └── songTable │ ├── song.vue │ ├── songTable.vue │ ├── songmenu.vue │ └── songs.vue ├── css ├── common.css └── theme │ ├── fonts │ ├── element-icons.ttf │ └── element-icons.woff │ └── index.css ├── elementUi └── element.js ├── main.js ├── router └── index.js ├── store └── index.js └── views ├── album └── album.vue ├── index.vue ├── latest └── latest.vue ├── mv ├── mv.vue └── videos.vue ├── myMusic └── myMusic.vue ├── ranking └── ranking.vue ├── recommend └── recommend.vue ├── search └── search.vue ├── singer ├── singer.vue └── singerInformation │ └── singerInformation.vue └── songMenu ├── detail └── detail.vue ├── highquality └── highquality.vue └── songMenu.vue /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/cry.png -------------------------------------------------------------------------------- /src/assets/img/latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/img/latest.png -------------------------------------------------------------------------------- /src/assets/img/ranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/img/ranking.png -------------------------------------------------------------------------------- /src/assets/img/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/img/recommend.png -------------------------------------------------------------------------------- /src/assets/img/singer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/img/singer.png -------------------------------------------------------------------------------- /src/assets/img/singerDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/img/singerDetail.png -------------------------------------------------------------------------------- /src/assets/img/songMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/img/songMenu.png -------------------------------------------------------------------------------- /src/assets/img/songMenuDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/img/songMenuDetail.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/axios/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/axios/axios.js -------------------------------------------------------------------------------- /src/components/Login/phoneLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/Login/phoneLogin.vue -------------------------------------------------------------------------------- /src/components/commentsTable/commentsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/commentsTable/commentsTable.vue -------------------------------------------------------------------------------- /src/components/lyric/lyric.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/lyric/lyric.vue -------------------------------------------------------------------------------- /src/components/lyric/playlist/lyrics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/lyric/playlist/lyrics.vue -------------------------------------------------------------------------------- /src/components/lyric/playlist/playlist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/lyric/playlist/playlist.vue -------------------------------------------------------------------------------- /src/components/musicPlayer/musicPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/musicPlayer/musicPlayer.vue -------------------------------------------------------------------------------- /src/components/register/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/register/register.vue -------------------------------------------------------------------------------- /src/components/songOutline /albumOutline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songOutline /albumOutline.vue -------------------------------------------------------------------------------- /src/components/songOutline /highOutline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songOutline /highOutline.vue -------------------------------------------------------------------------------- /src/components/songOutline /musicOutline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songOutline /musicOutline.vue -------------------------------------------------------------------------------- /src/components/songOutline /singerOutline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songOutline /singerOutline.vue -------------------------------------------------------------------------------- /src/components/songOutline /songOutline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songOutline /songOutline.vue -------------------------------------------------------------------------------- /src/components/songTable/song.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songTable/song.vue -------------------------------------------------------------------------------- /src/components/songTable/songTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songTable/songTable.vue -------------------------------------------------------------------------------- /src/components/songTable/songmenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songTable/songmenu.vue -------------------------------------------------------------------------------- /src/components/songTable/songs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/components/songTable/songs.vue -------------------------------------------------------------------------------- /src/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/css/common.css -------------------------------------------------------------------------------- /src/css/theme/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/css/theme/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/css/theme/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/css/theme/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/css/theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/css/theme/index.css -------------------------------------------------------------------------------- /src/elementUi/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/elementUi/element.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/views/album/album.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/album/album.vue -------------------------------------------------------------------------------- /src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/index.vue -------------------------------------------------------------------------------- /src/views/latest/latest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/latest/latest.vue -------------------------------------------------------------------------------- /src/views/mv/mv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/mv/mv.vue -------------------------------------------------------------------------------- /src/views/mv/videos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/mv/videos.vue -------------------------------------------------------------------------------- /src/views/myMusic/myMusic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/myMusic/myMusic.vue -------------------------------------------------------------------------------- /src/views/ranking/ranking.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/ranking/ranking.vue -------------------------------------------------------------------------------- /src/views/recommend/recommend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/recommend/recommend.vue -------------------------------------------------------------------------------- /src/views/search/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/search/search.vue -------------------------------------------------------------------------------- /src/views/singer/singer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/singer/singer.vue -------------------------------------------------------------------------------- /src/views/singer/singerInformation/singerInformation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/singer/singerInformation/singerInformation.vue -------------------------------------------------------------------------------- /src/views/songMenu/detail/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/songMenu/detail/detail.vue -------------------------------------------------------------------------------- /src/views/songMenu/highquality/highquality.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/songMenu/highquality/highquality.vue -------------------------------------------------------------------------------- /src/views/songMenu/songMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhysah/xhymusic/HEAD/src/views/songMenu/songMenu.vue --------------------------------------------------------------------------------