Ember cli command for generating a new component

To generate a new component using Ember CLI, you can use the following command:

ember generate component <component-name>

Replace <component-name> with the name of the component you want to generate. For example:

ember generate component my-new-component

This will create a new file called my-new-component.js in the app/components directory, along with a corresponding template file called my-new-component.hbs in the app/templates/components directory.

You can also specify additional options to customize the generation process. For example: