Skip to content
Version:

Install

shell
npm i @mate-angular/select

Import

typescript
import { MateSelectComponent } from '@mate-angular/select';

Variants

Default with items

html
<mate-select-ng label="Select an option" [items]="items"></mate-select-ng>

With custom renderer

html
<mate-select-ng label="Custom options">
  <ng-template>
    <vaadin-list-box>
      <vaadin-item value="1">Option 1</vaadin-item>
      <vaadin-item value="2">Option 2</vaadin-item>
    </vaadin-list-box>
  </ng-template>
</mate-select-ng>