botonera-productos.html
388 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 btn-producto rounded border border-light p-0"
ng-click="(boton != '') ? ejecutarFuncion(boton.label) : null;"
>
<img ng-src="./img/{{boton.image}}" alt="">
</button>
</div>