├── .DS_Store ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── .DS_Store ├── App.vue ├── assets │ └── logo.png ├── components │ ├── .DS_Store │ ├── common │ │ ├── .DS_Store │ │ ├── IMG_7727.JPG │ │ ├── allFile.vue │ │ ├── btFile.vue │ │ ├── bus.js │ │ ├── docFile.vue │ │ ├── fileShow.vue │ │ ├── fileState.vue │ │ ├── imgCount.vue │ │ ├── imgFile.vue │ │ ├── imgTopBar.vue │ │ ├── leftNav.vue │ │ ├── musicFile.vue │ │ ├── myShare.vue │ │ ├── otherFile.vue │ │ ├── topBar.vue │ │ ├── trashFile.vue │ │ └── videoFile.vue │ └── pages │ │ ├── cloudDrive.vue │ │ ├── driveCount.vue │ │ ├── driveHeader.vue │ │ └── largeImg.vue ├── main.js └── router │ └── index.js └── static └── .gitkeep /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CloudDrive 2 | 3 | ## 使用 vue 框架模仿的百度网盘 4 | 5 | 6 | -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/.DS_Store -------------------------------------------------------------------------------- /src/components/common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/.DS_Store -------------------------------------------------------------------------------- /src/components/common/IMG_7727.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/IMG_7727.JPG -------------------------------------------------------------------------------- /src/components/common/allFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/allFile.vue -------------------------------------------------------------------------------- /src/components/common/btFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/btFile.vue -------------------------------------------------------------------------------- /src/components/common/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/bus.js -------------------------------------------------------------------------------- /src/components/common/docFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/docFile.vue -------------------------------------------------------------------------------- /src/components/common/fileShow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/fileShow.vue -------------------------------------------------------------------------------- /src/components/common/fileState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/fileState.vue -------------------------------------------------------------------------------- /src/components/common/imgCount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/imgCount.vue -------------------------------------------------------------------------------- /src/components/common/imgFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/imgFile.vue -------------------------------------------------------------------------------- /src/components/common/imgTopBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/imgTopBar.vue -------------------------------------------------------------------------------- /src/components/common/leftNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/leftNav.vue -------------------------------------------------------------------------------- /src/components/common/musicFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/musicFile.vue -------------------------------------------------------------------------------- /src/components/common/myShare.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/myShare.vue -------------------------------------------------------------------------------- /src/components/common/otherFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/otherFile.vue -------------------------------------------------------------------------------- /src/components/common/topBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/topBar.vue -------------------------------------------------------------------------------- /src/components/common/trashFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/trashFile.vue -------------------------------------------------------------------------------- /src/components/common/videoFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/common/videoFile.vue -------------------------------------------------------------------------------- /src/components/pages/cloudDrive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/pages/cloudDrive.vue -------------------------------------------------------------------------------- /src/components/pages/driveCount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/pages/driveCount.vue -------------------------------------------------------------------------------- /src/components/pages/driveHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/pages/driveHeader.vue -------------------------------------------------------------------------------- /src/components/pages/largeImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/components/pages/largeImg.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheInlaidHarp/CloudDrive/HEAD/src/router/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------