Skip to content

Commit ccf5839

Browse files
committed
📝 docs: update readme features
1 parent 5428161 commit ccf5839

File tree

1 file changed

+35
-4
lines changed

1 file changed

+35
-4
lines changed

readme.md

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,42 @@ ngxd g c sample
8787
ngxd new <project-name>
8888
```
8989

90+
### Components
91+
92+
##### :hammer_and_wrench: **basic**
93+
94+
```bash
95+
# create a new basic component
96+
ngxd generate component basic <component-name>
97+
# or
98+
ngxd g c b <component-name>
99+
```
100+
101+
##### :hammer_and_wrench: **widget**
102+
103+
```bash
104+
# create a new widget component
105+
ngxd generate component widget <component-name>
106+
# or
107+
ngxd g c w <component-name>
108+
```
109+
110+
##### :hammer_and_wrench: **page**
111+
112+
```bash
113+
# create a new page component
114+
ngxd generate component page <component-name>
115+
# or
116+
ngxd g c p <component-name>
117+
```
118+
119+
##### :hammer_and_wrench: **dialog**
120+
90121
```bash
91-
# create a new entity
92-
ngxd generate component <component-name>
93-
# Or use an alias
94-
ngxd g c <component-name>
122+
# create a new dialog component
123+
ngxd generate component dialog <component-name>
124+
# or
125+
ngxd g c d <component-name>
95126
```
96127

97128
## :boy: **Author**

0 commit comments

Comments
 (0)