├── node ├── .gitignore ├── index.ts ├── package-lock.json ├── package.json └── tsconfig.json └── web ├── .gitignore ├── README.md ├── env.d.ts ├── index.html ├── package-lock.json ├── package.json ├── public └── favicon.ico ├── src ├── App.vue ├── assets │ ├── 1.jpg │ ├── china.js │ └── geoMap.ts ├── components │ ├── HelloWorld.vue │ ├── TheWelcome.vue │ ├── WelcomeItem.vue │ └── icons │ │ ├── IconCommunity.vue │ │ ├── IconDocumentation.vue │ │ ├── IconEcosystem.vue │ │ ├── IconSupport.vue │ │ └── IconTooling.vue ├── main.ts ├── server │ └── index.ts └── stores │ ├── index.ts │ └── type.ts ├── tsconfig.json ├── tsconfig.vite-config.json └── vite.config.ts /node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/node/.gitignore -------------------------------------------------------------------------------- /node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/node/index.ts -------------------------------------------------------------------------------- /node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/node/package-lock.json -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/node/package.json -------------------------------------------------------------------------------- /node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/node/tsconfig.json -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/README.md -------------------------------------------------------------------------------- /web/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/App.vue -------------------------------------------------------------------------------- /web/src/assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/assets/1.jpg -------------------------------------------------------------------------------- /web/src/assets/china.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/assets/china.js -------------------------------------------------------------------------------- /web/src/assets/geoMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/assets/geoMap.ts -------------------------------------------------------------------------------- /web/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /web/src/components/TheWelcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/components/TheWelcome.vue -------------------------------------------------------------------------------- /web/src/components/WelcomeItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/components/WelcomeItem.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/components/icons/IconCommunity.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/components/icons/IconDocumentation.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/components/icons/IconEcosystem.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/components/icons/IconSupport.vue -------------------------------------------------------------------------------- /web/src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/components/icons/IconTooling.vue -------------------------------------------------------------------------------- /web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/main.ts -------------------------------------------------------------------------------- /web/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/server/index.ts -------------------------------------------------------------------------------- /web/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/stores/index.ts -------------------------------------------------------------------------------- /web/src/stores/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/src/stores/type.ts -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.vite-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/tsconfig.vite-config.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/message163/xiaoman_novid19/HEAD/web/vite.config.ts --------------------------------------------------------------------------------