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