├── .babelrc ├── .editorconfig ├── .gitignore ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── api │ └── index.js ├── assets │ └── logo.png ├── components │ ├── Comments.vue │ ├── Loading.vue │ ├── MvList.vue │ ├── SearchInput.vue │ └── VideoPlayer.vue ├── main.js ├── pages │ ├── Index.vue │ └── MV.vue ├── router │ └── index.js ├── style │ ├── base.scss │ └── base │ │ ├── _buttons.scss │ │ ├── _function.scss │ │ ├── _mixins.scss │ │ ├── _reset.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ └── _variables.scss └── util │ └── filters.js └── static └── .gitkeep /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Comments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/components/Comments.vue -------------------------------------------------------------------------------- /src/components/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/components/Loading.vue -------------------------------------------------------------------------------- /src/components/MvList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/components/MvList.vue -------------------------------------------------------------------------------- /src/components/SearchInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/components/SearchInput.vue -------------------------------------------------------------------------------- /src/components/VideoPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/components/VideoPlayer.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/pages/Index.vue -------------------------------------------------------------------------------- /src/pages/MV.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/pages/MV.vue -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/style/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/style/base.scss -------------------------------------------------------------------------------- /src/style/base/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/style/base/_buttons.scss -------------------------------------------------------------------------------- /src/style/base/_function.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/style/base/_function.scss -------------------------------------------------------------------------------- /src/style/base/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/style/base/_mixins.scss -------------------------------------------------------------------------------- /src/style/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/style/base/_reset.scss -------------------------------------------------------------------------------- /src/style/base/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/style/base/_type.scss -------------------------------------------------------------------------------- /src/style/base/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/style/base/_utilities.scss -------------------------------------------------------------------------------- /src/style/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/style/base/_variables.scss -------------------------------------------------------------------------------- /src/util/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safaring/Vue2-MV/HEAD/src/util/filters.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------