forked from chobitsnerv/lite-web-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change vue-cli into vite for performance improvement.
- Loading branch information
1 parent
964e512
commit 6b6b12f
Showing
47 changed files
with
2,280 additions
and
17,452 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,44 @@ | ||
# Lite Studio | ||
以csv文件作为数据库的纯前端音乐播放器,使用vue-cli进行构建 | ||
|
||
以 csv 文件作为数据库的纯前端音乐播放器,使用 vite 进行构建 | ||
|
||
# CHANGE LOG | ||
* 2022-02-05 | ||
* 从[这里](https://github.com/K-bai/csv-based-web-music-player)fork代码 | ||
|
||
- 2022-02-05 | ||
- 从[这里](https://github.com/K-bai/csv-based-web-music-player)fork 代码 | ||
|
||
## Project setup | ||
|
||
``` | ||
npm install | ||
``` | ||
|
||
### Compiles and hot-reloads for development | ||
|
||
``` | ||
npm run serve | ||
npm run dev | ||
``` | ||
|
||
### Compiles and minifies for production | ||
|
||
``` | ||
npm run build | ||
npm run preview | ||
``` | ||
|
||
### Lints and fixes files | ||
|
||
``` | ||
npm run lint | ||
``` | ||
|
||
### Customize configuration | ||
See [Configuration Reference](https://cli.vuejs.org/config/). | ||
|
||
See [Configuration Reference](https://cn.vitejs.dev/config/#configuring-vite). | ||
|
||
## Task List | ||
|
||
- [x] vue3 project creation with vite. | ||
- [ ] Refactor csv-based-web-music-player modules into vue3 compisation API base. | ||
- [ ] Implement requests based on axios | ||
- [ ] Implement local cache based on caches api. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite App</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.