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实现的一个音乐搜索、在线试听、下载的功能)
- Host: GitHub
- URL: https://github.com/hezhizheng/vue-music-dev
- Owner: hezhizheng
- Created: 2018-05-13T07:57:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-09T05:46:33.000Z (over 5 years ago)
- Last Synced: 2025-06-13T06:07:05.921Z (4 months ago)
- Topics: music, vue, vue-cli
- Language: JavaScript
- Homepage: https://music.hzz.cool/#/search
- Size: 145 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/;
}
```