UNPKG

ng2-bootstrap-base-modified

Version:

Native Angular Bootstrap Components Typeahead modified

15 lines (12 loc) 390 B
import { Component } from '@angular/core'; @Component({ 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); } }