uiw admin
v6.1.9
Ein Einsteigerprojekt basierend auf uiw und @kkt/pro.
Paket | Version | Beschreibung |
---|---|---|
@uiw-admin/basic-layouts | Für das Layout verwendete Komponenten | |
@uiw-admin/document-title | Seitentitel festlegen | |
@uiw-admin/user-login | Login-Schnittstelle | |
@uiw-admin/components | Gemeinsame Geschäftskomponenten | |
@uiw-admin/exceptions | Öffentliche Ausnahmekomponente | |
eslint-config-uiw-admin | uiw-admin integrierte Eslint-Regelkonfiguration |
- Laden Sie direkt die Beispieldatei
uiw-admin-ts.zip
uiw-admin-js.zip
herunter
- Projekt per Befehl erstellen
# npm 6.x
$ npm init uiw-admin my-app --example uiw-admin-ts
# npm 7+, extra double-dash is needed:
$ npm init uiw-admin my-app -- --example uiw-admin-ts
$ yarn create uiw-admin [appName]
# or npm
$ npm create uiw-admin my-app
# or npx
$ npx create-uiw-admin my-app
Verwenden Sie
yarn workspaces
umnode_modules
zu verwalten
$ cd uiw-admin
$ yarn install
$ yarn build
$ yarn start
$ cd uiw-admin
$ yarn build
Ein einfaches uiw-admin-Projekt sieht ungefähr so aus:
.
├── README.md
├── config
│ ├── .kktprc.ts # 配置文件可放在根目录下
│ └── routes.json # 路由配置
├── mocker # mock 数据
│ ├── auth
│ │ └── index.js
│ ├── demo.js
│ ├── index.js
│ ├── login.js
│ └── selectPage.js
├── package.json
├── public
│ ├── favicon.ico
│ └── index.html
├── src
│ ├── assets
│ │ ├── head.png
│ │ ├── logo-dark.svg
│ │ └── logo-light.svg
│ ├── index.css
│ ├── index.tsx
│ ├── layouts # 框架组件
│ │ ├── BasicLayout.tsx # 框架菜单
│ │ ├── UserLayout.tsx # 登陆页面
│ │ └── logo.svg
│ ├── models # remach models
│ │ ├── Doc
│ │ │ └── doc.ts
│ │ ├── demo.ts
│ │ ├── global.ts
│ │ ├── home.ts
│ │ └── login.ts
│ ├── pages # 页面, 文件名大写
│ │ ├── Dashboard
│ │ │ └── index.tsx
│ │ ├── Demo
│ │ │ ├── Detail
│ │ │ │ ├── index.tsx
│ │ │ │ └── items.tsx
│ │ │ └── index.tsx
│ │ ├── TableList
│ │ │ └── index.tsx
│ │ └── login
│ │ ├── index.module.less
│ │ └── index.tsx
│ ├── react-app-env.d.ts
│ └── servers # 放置api文件的地方,文件名已后端接口模块名命名,不以路由命名
│ └── index.ts
├── .kktprc.ts # 配置文件可放在config目录下
└── tsconfig.json
Vielen Dank an alle Mitwirkenden. Entwickler sind herzlich willkommen, zu Open-Source-Projekten beizutragen.
Lizenziert unter der MIT-Lizenz.