template generate visualforce component

Generate a Visualforce Component.

Description for template generate visualforce component 

The command generates the .Component file and associated metadata file in the specified directory or the current working directory by default.

Aliases for template generate visualforce component 

force:visualforce:component:create

visualforce:generate:component

Flags 

Flag Name (Long)Flag Name (Short)Description
‑‑api‑versionN/AType: Value

Override the api version used for api requests made by this command
‑‑flags‑dirN/AType: Value

Import flag values from a directory.
‑‑jsonN/AType: Boolean

Format output as json.
‑‑label‑lType: Value
Required

Visualforce Component label.
‑‑name‑nType: Value
Required

Name of the generated Visualforce Component.

The name can be up to 40 characters and must start with a letter.
‑‑output‑dir‑dType: Value
Default value: .

Directory for saving the created files.

The location can be an absolute path or relative to the current working directory. The default is the current directory.
‑‑template‑tType: Value
Valid Values: DefaultVFComponent
Default value: DefaultVFComponent

Template to use for file creation.

Supplied parameter values or default values are filled into a copy of the template.

Examples for template generate visualforce component 

Generate the metadata files for a Visualforce component in the current directory:

1sf template generate visualforce component --name mycomponent --label mylabel

Similar to previous example, but generate the files in the directory “force-app/main/default/components”:

1sf template generate visualforce component --name mycomponent --label mylabel --output-dir components