621 B
621 B
Examples
{% tabs %} {% tab label="Simple Component" %}
Create a component named my-component:
nx g @nx/angular:component my-component
{% /tab %}
{% tab label="Single File Component" %}
Create a component named my-component with inline styles and inline template:
nx g @nx/angular:component my-component --inlineStyle --inlineTemplate
{% /tab %}
{% tab label="Component with OnPush Change Detection Strategy" %}
Create a component named my-component with OnPush Change Detection Strategy:
nx g @nx/angular:component my-component --changeDetection=OnPush
{% /tab %}