爬取网易云音乐的 api地址。
src目录解析:css
│ App.vue │ main.js │ router.js │ ├─api //api配置文件夹 │ common.js │ config.js │ ├─assets //静态图片资源 │ find.svg │ hot_bg.jpg │ hot_icon.png │ play.png │ ├─components │ ├─HomeBottom //主页底部组件 │ │ foot.svg │ │ footbg.png │ │ index.vue │ │ │ ├─HomeTop //主页头部组件 │ │ index.vue │ │ logo.svg │ │ │ ├─HotWord //热门搜索词 │ │ index.vue │ │ │ ├─MusicPlayer //播放器组件 │ │ index.vue │ │ │ ├─RecommendList //推荐歌单 │ │ index.vue │ │ │ ├─SongItem //歌曲组件 │ │ index.vue │ │ │ ├─TabIndex //tab的首页 │ │ index.vue │ │ │ ├─TabRank //tab的排行榜页 │ │ index.vue │ │ │ └─TabSearch //tab的搜索页 │ index.vue │ ├─store //vuex │ actions.js │ getters.js │ index.js │ mutation-types.js │ mutations.js │ state.js │ ├─styles │ playlist_page.css │ remd_list.css │ song_item.css │ └─views HomePage.vue //主界面 PlayListPage.vue //歌单页
新手学vue,代码确定有不少糟糕的地方.若是不嫌弃能够给个Star
github项目地址, 前端小江