爬取網易雲音樂的 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項目地址, 前端小江