├── .gitignore ├── LICENSE ├── README.assets ├── image-20230916225512045.png └── image-20230916230821864.png ├── README.md ├── babel.config.js ├── jsconfig.json ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── VideoPlay.vue ├── VideoPlayS.vue ├── VideoPlayT.vue ├── assets │ └── logo.png ├── main.js └── router │ └── index.js └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/image-20230916225512045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/README.assets/image-20230916225512045.png -------------------------------------------------------------------------------- /README.assets/image-20230916230821864.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/README.assets/image-20230916230821864.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/VideoPlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/src/VideoPlay.vue -------------------------------------------------------------------------------- /src/VideoPlayS.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/src/VideoPlayS.vue -------------------------------------------------------------------------------- /src/VideoPlayT.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/src/VideoPlayT.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/src/router/index.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xunlu129/video-demo-frontend/HEAD/vue.config.js --------------------------------------------------------------------------------