An open API service indexing awesome lists of open source software.

https://github.com/hezhizheng/vue-music-dev

Music search, audition and download functions based on vue-cli & mint-ui (通过酷狗API,用vue实现的一个音乐搜索、在线试听、下载的功能)
https://github.com/hezhizheng/vue-music-dev

music vue vue-cli

Last synced: 4 months ago
JSON representation

Music search, audition and download functions based on vue-cli & mint-ui (通过酷狗API,用vue实现的一个音乐搜索、在线试听、下载的功能)

Awesome Lists containing this project

README

          

# vue-music-dev

> vue-cli、mint-ui实现的搜歌&试听&下载的功能

> [线上演示地址](http://music.hzz.cool/#/search)

## 本地开发使用
``` bash
# 安装依赖包
npm install

# 本地运行项目
npm run dev

# 打包
npm run build

```
## 线上部署 Nginx
#### 反向代理
``` bash
location ^~/search-song/ {
proxy_pass http://songsearch.kugou.com/;
}
location ^~/music-info/ {
proxy_pass http://wwwapi.kugou.com/;
}
```