UNPKG

angular-material-npfixed

Version:

The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M

21 lines (16 loc) 647 B
<div ng-controller="DemoCtrl as ctrl" layout="column" ng-cloak> <md-content class="md-padding" layout="column"> <h2 class="md-title">Display a set of items as chips.</h2> <md-chips> <md-chip>Hockey</md-chip> <md-chip>Lacrosse</md-chip> <md-chip>Baseball</md-chip> <!-- Static chips are transcluded --> <md-chip>{{ctrl.chipText}}</md-chip> </md-chips> <p class="note"> Static chips cannot be selected, removed or edited, and are not part of any model.<br/> If no <code>ng-model</code> is provided, there are no input elements in <code>md-chips</code>. </p> </md-content> </div>