app.js 363 Bytes
angular.module('focaCabeceraFacturador', [])
    .component('focaCabeceraFacturador', {
        templateUrl: 'src/views/cabecera.html',
        controller: 'focaCabeceraFacturadorController',
        bindings: { 
            titulo: '<',
            numero: '<',
            fecha: '=',
            busqueda: '<',
            fechaDisabled: '<'
        }
    });