Skip to content

Instantly share code, notes, and snippets.

@Armenvardanyan95
Created July 2, 2017 11:58
Show Gist options
  • Save Armenvardanyan95/c5a6f87107d56f7f7085bee614b82596 to your computer and use it in GitHub Desktop.
Save Armenvardanyan95/c5a6f87107d56f7f7085bee614b82596 to your computer and use it in GitHub Desktop.
@Component({
selector: 'some-component',
template: `
<div>
<dropdown-component [options]="weightUnits"></dropdown-component>
<-- This will render a dropdown based in the options -->
<input type="text" placeholder="Price">
<dropdown-component [options]="weightUnits"></dropdown-component>
<-- We need to make this one's labels to be preceded with a slash -->
</div>
`
})
export class SomeComponent {
public weghtUnits = [{value: 1, label: 'kg'}, {value: 2, label: 'oz'}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment