├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── audio-editor.png ├── audio-table.png ├── batch-import.png ├── english-player-mod.png ├── music-player-mod.png ├── playlist.png └── redis_mod.png ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── components │ ├── AudioEditor.vue │ ├── AudioPlayer.vue │ ├── AudioTable.vue │ ├── BatchImport.vue │ ├── DataManage.vue │ ├── Equipment.vue │ ├── Playlist.vue │ └── User.vue ├── main.js ├── router │ └── main.js ├── store │ └── main.js └── styles │ ├── github-markdown.css │ ├── index.scss │ └── palette.scss ├── vue.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/audio-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/docs/audio-editor.png -------------------------------------------------------------------------------- /docs/audio-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/docs/audio-table.png -------------------------------------------------------------------------------- /docs/batch-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/docs/batch-import.png -------------------------------------------------------------------------------- /docs/english-player-mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/docs/english-player-mod.png -------------------------------------------------------------------------------- /docs/music-player-mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/docs/music-player-mod.png -------------------------------------------------------------------------------- /docs/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/docs/playlist.png -------------------------------------------------------------------------------- /docs/redis_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/docs/redis_mod.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/AudioEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/components/AudioEditor.vue -------------------------------------------------------------------------------- /src/components/AudioPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/components/AudioPlayer.vue -------------------------------------------------------------------------------- /src/components/AudioTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/components/AudioTable.vue -------------------------------------------------------------------------------- /src/components/BatchImport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/components/BatchImport.vue -------------------------------------------------------------------------------- /src/components/DataManage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/components/DataManage.vue -------------------------------------------------------------------------------- /src/components/Equipment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/components/Equipment.vue -------------------------------------------------------------------------------- /src/components/Playlist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/components/Playlist.vue -------------------------------------------------------------------------------- /src/components/User.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/components/User.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/router/main.js -------------------------------------------------------------------------------- /src/store/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/store/main.js -------------------------------------------------------------------------------- /src/styles/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/styles/github-markdown.css -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/src/styles/palette.scss -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimkiray/redive-front/HEAD/yarn.lock --------------------------------------------------------------------------------