71 lines
820 B
Markdown
71 lines
820 B
Markdown
# component
|
|
|
|
Create a component
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
ng generate component ...
|
|
|
|
```
|
|
|
|
## Options
|
|
|
|
### classComponent
|
|
|
|
Default: `false`
|
|
|
|
Type: `boolean`
|
|
|
|
Use class components instead of functional component
|
|
|
|
### export
|
|
|
|
Default: `false`
|
|
|
|
Type: `boolean`
|
|
|
|
When true, the component is exported from the project index.ts (if it exists).
|
|
|
|
### name
|
|
|
|
Type: `string`
|
|
|
|
The name of the component.
|
|
|
|
### pascalCaseFiles
|
|
|
|
Default: `false`
|
|
|
|
Type: `boolean`
|
|
|
|
Use pascal case component file name (e.g. App.tsx)
|
|
|
|
### project
|
|
|
|
Type: `string`
|
|
|
|
The name of the project.
|
|
|
|
### routing
|
|
|
|
Type: `boolean`
|
|
|
|
Generate library with routes
|
|
|
|
### skipTests
|
|
|
|
Default: `false`
|
|
|
|
Type: `boolean`
|
|
|
|
When true, does not create "spec.ts" test files for the new component.
|
|
|
|
### style
|
|
|
|
Default: `css`
|
|
|
|
Type: `string`
|
|
|
|
The file extension to be used for style files.
|