ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
15 lines (12 loc) • 390 B
text/typescript
import { Component } from '@angular/core';
({
selector: 'demo-dropdown-basic-link',
templateUrl: './basic-link.html'
})
export class DemoDropdownBasicLinkComponent {
public items:string[] = ['The first choice!',
'And another choice for you.', 'but wait! A third!'];
public toggled(open:boolean):void {
console.log('Dropdown is now: ', open);
}
}