├── .gitattributes ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── __pycache__ └── ws.cpython-310.pyc ├── index.html ├── jsconfig.json ├── package.json ├── public ├── bg.png └── favicon.ico ├── src ├── App.vue ├── aliyun.ts ├── components │ ├── Danmaku.vue │ ├── Guard.vue │ ├── Hello.vue │ ├── Medal.vue │ ├── Message.vue │ ├── Show.vue │ └── SuperChat.vue ├── index.css └── main.js └── vite.config.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/ws.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/__pycache__/ws.cpython-310.pyc -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/index.html -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/package.json -------------------------------------------------------------------------------- /public/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/public/bg.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/aliyun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/aliyun.ts -------------------------------------------------------------------------------- /src/components/Danmaku.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/components/Danmaku.vue -------------------------------------------------------------------------------- /src/components/Guard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/components/Guard.vue -------------------------------------------------------------------------------- /src/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/components/Hello.vue -------------------------------------------------------------------------------- /src/components/Medal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/components/Medal.vue -------------------------------------------------------------------------------- /src/components/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/components/Message.vue -------------------------------------------------------------------------------- /src/components/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/components/Show.vue -------------------------------------------------------------------------------- /src/components/SuperChat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/components/SuperChat.vue -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/src/main.js -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drelf2018/vue-bili-danmaku/HEAD/vite.config.ts --------------------------------------------------------------------------------