Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <div class="ui dropdown">
  2. <div class="text">
  3. {{ ??? }}
  4. </div>
  5. <i class="dropdown icon"></i>
  6. <div class="menu">
  7. <ng-content select="sm-dropdown-item"></ng-content>
  8. <ng-content select="template"></ng-content>
  9. </div>
  10. </div>
  11.  
  12. <sm-dropdown [value]="color" (valueChange)="color=$event">
  13. <template ngFor let-itemColor [ngForOf]="colors">
  14. <sm-dropdown-item class="item" [value]="itemColor.color" [selected]="itemColor == color">{{ itemColor.name }}
  15. </sm-dropdown-item>
  16. </template>
  17. </sm-dropdown>
  18.  
  19. <ng-content></ng-content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement