ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
29 lines (25 loc) • 950 B
text/typescript
import { Component } from '@angular/core';
export class NzDemoSelectTemplateComponent {
options = [
{ value: 'android', label: 'android' },
{ value: 'apple', label: 'apple' },
{ value: 'windows', label: 'windows' },
{ value: 'ie', label: 'ie' },
{ value: 'chrome', label: 'chrome' },
{ value: 'github', label: 'github' },
{ value: 'aliwangwang', label: 'aliwangwang' },
{ value: 'dingding', label: 'dingding' },
];
selectedOption = this.options[ 0 ];
}