Bigtop Manager UI is the front-end UI of the Manager platform, which stores code about the interaction between the platform and users, interface display, control styles, etc.
Node.js:v20.9.0
pnpm: v10.12.3
Vite:v5.4.19
Typescript:v5.9.2
Vue:v3.4.37
Editor Recommendation: Visual Studio Code
├── public/ # Static assets ├── src/ # Source code root │ ├── api/ # API request functions │ ├── assets/ # Static assets │ ├── components/ # Reusable component directory │ │ ├── base/ # Basic UI components │ │ ├── common/ # Common composite components │ ├── composables/ # Vue composables │ ├── directives/ # Custom directives │ ├── features/ # Feature-based components │ ├── layouts/ # Layout components │ ├── locales/ # locale files (i18n) │ ├── pages/ # Page components │ ├── plugins/ # Plugins and global registrations │ ├── router/ # Routing configuration │ ├── store/ # Global state management │ ├── styles/ # Global styles │ ├── types/ # Global TypeScript declarations (.d.ts) │ ├── utils/ # Utility functions │ ├── App.vue # Root component │ └── main.ts # Project entry point ├── tests/ # Unit and integration tests ├── index.html # HTML template ├── package.json # Project metadata and dependencies ├── tsconfig.json # TypeScript config file ├── vite.config.ts # Vite config ├── postcss.config.ts # PostCSS config └── vitest.config.ts # Vitest config