botonera-productos.html
543 Bytes
<div
class="col-6 col-sm-3 p-2"
ng-repeat="boton in botones track by $index"
ng-class="{'d-md-grid': boton == ''}">
<button
type="button"
class="btn btn-block rounded border border-light p-0"
ng-click="(boton != '') ? ejecutarFuncion(boton) : null;"
ng-class="{'btn-producto' : boton.image, 'btn-producto-default' : !boton.image}"
>
<img ng-src="./img/{{boton.image || boton.imageDefault}}" alt="">
<label ng-if="!boton.image" ng-bind="boton.label"></label>
</button>
</div>