├── .babelrc ├── .editorconfig ├── .gitignore ├── .npmignore ├── .postcssrc.js ├── LICENSE ├── README.md ├── config ├── index.js └── prod.env.js ├── index.html ├── package.json ├── server.js ├── src ├── App.vue ├── components │ └── xgplayer-vue-demo.vue ├── main.js ├── router │ └── index.js └── xgplayer-vue.vue └── static ├── .gitkeep ├── favicon.ico └── xgplayer-demo.mp4 /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.log 4 | .temp 5 | dist 6 | package-lock.json 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/.npmignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/README.md -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/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/bytedance/xgplayer-vue/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/server.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/xgplayer-vue-demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/src/components/xgplayer-vue-demo.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/xgplayer-vue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/src/xgplayer-vue.vue -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/xgplayer-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/xgplayer-vue/HEAD/static/xgplayer-demo.mp4 --------------------------------------------------------------------------------