├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── orange.ico ├── orange512.png └── preload.js ├── show.gif ├── src ├── App.vue ├── assets │ ├── defaultcur.png │ └── pointer.png ├── background.js ├── common │ └── reset.less ├── main.js ├── router │ └── index.js ├── store │ └── index.js └── views │ └── Home.vue ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/public/index.html -------------------------------------------------------------------------------- /public/orange.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/public/orange.ico -------------------------------------------------------------------------------- /public/orange512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/public/orange512.png -------------------------------------------------------------------------------- /public/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/public/preload.js -------------------------------------------------------------------------------- /show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/show.gif -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/defaultcur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/assets/defaultcur.png -------------------------------------------------------------------------------- /src/assets/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/assets/pointer.png -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/background.js -------------------------------------------------------------------------------- /src/common/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/common/reset.less -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerinlin/localMusicPlayer/HEAD/yarn.lock --------------------------------------------------------------------------------