├── .editorconfig ├── .gitignore ├── .prettierrc.json ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── api.md ├── env.d.ts ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── public └── .gitkeep ├── src ├── App.vue ├── assets │ └── reset.css ├── main.ts └── package │ ├── client.d.ts │ ├── components │ ├── QFile.vue │ ├── QForward.vue │ ├── QHeader.vue │ ├── QImage.vue │ ├── QMain.vue │ ├── QReply.vue │ ├── QText.vue │ ├── QTip.vue │ ├── QVoice.vue │ ├── QVoiceLegacy.vue │ └── base │ │ ├── QMessageBase.vue │ │ ├── QReplyBase.vue │ │ ├── QVoiceBase.vue │ │ ├── QVoicePauseIcon.vue │ │ └── QVoicePlayIcon.vue │ ├── index.ts │ ├── lib │ ├── QTagColors.ts │ └── QTagCustomize.ts │ └── styles │ ├── base.scss │ ├── dark.scss │ └── light.scss ├── tools └── genPackageJson.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/README.md -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/api.md -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/env.d.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /public/.gitkeep: -------------------------------------------------------------------------------- 1 | .gitkeep 2 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/assets/reset.css -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/package/client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/client.d.ts -------------------------------------------------------------------------------- /src/package/components/QFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QFile.vue -------------------------------------------------------------------------------- /src/package/components/QForward.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QForward.vue -------------------------------------------------------------------------------- /src/package/components/QHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QHeader.vue -------------------------------------------------------------------------------- /src/package/components/QImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QImage.vue -------------------------------------------------------------------------------- /src/package/components/QMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QMain.vue -------------------------------------------------------------------------------- /src/package/components/QReply.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QReply.vue -------------------------------------------------------------------------------- /src/package/components/QText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QText.vue -------------------------------------------------------------------------------- /src/package/components/QTip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QTip.vue -------------------------------------------------------------------------------- /src/package/components/QVoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QVoice.vue -------------------------------------------------------------------------------- /src/package/components/QVoiceLegacy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/QVoiceLegacy.vue -------------------------------------------------------------------------------- /src/package/components/base/QMessageBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/base/QMessageBase.vue -------------------------------------------------------------------------------- /src/package/components/base/QReplyBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/base/QReplyBase.vue -------------------------------------------------------------------------------- /src/package/components/base/QVoiceBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/base/QVoiceBase.vue -------------------------------------------------------------------------------- /src/package/components/base/QVoicePauseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/base/QVoicePauseIcon.vue -------------------------------------------------------------------------------- /src/package/components/base/QVoicePlayIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/components/base/QVoicePlayIcon.vue -------------------------------------------------------------------------------- /src/package/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/index.ts -------------------------------------------------------------------------------- /src/package/lib/QTagColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/lib/QTagColors.ts -------------------------------------------------------------------------------- /src/package/lib/QTagCustomize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/lib/QTagCustomize.ts -------------------------------------------------------------------------------- /src/package/styles/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/styles/base.scss -------------------------------------------------------------------------------- /src/package/styles/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/styles/dark.scss -------------------------------------------------------------------------------- /src/package/styles/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/src/package/styles/light.scss -------------------------------------------------------------------------------- /tools/genPackageJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/tools/genPackageJson.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redlnn/FakeQQ-UI/HEAD/vite.config.ts --------------------------------------------------------------------------------