├── .gitignore ├── README.md ├── env.d.ts ├── index.html ├── package.json ├── public ├── data.json └── favicon.ico ├── server.js ├── src ├── App.vue ├── action.js ├── assets │ ├── base.css │ └── logo.svg ├── components │ ├── addUnitBtn.json │ ├── configUnitBtn.json │ ├── contractBtn.json │ ├── createBtn.json │ ├── detectBtn.json │ ├── editBtn.json │ ├── expression.json │ ├── icons │ │ ├── IconCommunity.vue │ │ ├── IconDocumentation.vue │ │ ├── IconEcosystem.vue │ │ ├── IconSupport.vue │ │ └── IconTooling.vue │ ├── nav.json │ ├── page.json │ ├── searchBtn.json │ ├── subBtn.json │ ├── tabs.json │ └── unitBtn.json ├── main.ts ├── router │ └── index.ts └── views │ ├── AboutView.vue │ └── HomeView.vue ├── tsconfig.json ├── tsconfig.vite-config.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/README.md -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/package.json -------------------------------------------------------------------------------- /public/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/public/data.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/server.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/action.js -------------------------------------------------------------------------------- /src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/assets/base.css -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/addUnitBtn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/addUnitBtn.json -------------------------------------------------------------------------------- /src/components/configUnitBtn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/configUnitBtn.json -------------------------------------------------------------------------------- /src/components/contractBtn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/contractBtn.json -------------------------------------------------------------------------------- /src/components/createBtn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/createBtn.json -------------------------------------------------------------------------------- /src/components/detectBtn.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "配置检测项" 3 | } -------------------------------------------------------------------------------- /src/components/editBtn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/editBtn.json -------------------------------------------------------------------------------- /src/components/expression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/expression.json -------------------------------------------------------------------------------- /src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/icons/IconCommunity.vue -------------------------------------------------------------------------------- /src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/icons/IconDocumentation.vue -------------------------------------------------------------------------------- /src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/icons/IconEcosystem.vue -------------------------------------------------------------------------------- /src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/icons/IconSupport.vue -------------------------------------------------------------------------------- /src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/icons/IconTooling.vue -------------------------------------------------------------------------------- /src/components/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/nav.json -------------------------------------------------------------------------------- /src/components/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/page.json -------------------------------------------------------------------------------- /src/components/searchBtn.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/subBtn.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "配置检测项" 3 | } -------------------------------------------------------------------------------- /src/components/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/tabs.json -------------------------------------------------------------------------------- /src/components/unitBtn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/components/unitBtn.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/views/AboutView.vue -------------------------------------------------------------------------------- /src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/src/views/HomeView.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.vite-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/tsconfig.vite-config.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naji0329/vite_cs/HEAD/vite.config.ts --------------------------------------------------------------------------------