import coreModule from 'app/core/core_module'; const template = `
`; export function gfPageDirective() { return { restrict: 'E', template: template, scope: { model: '=', }, transclude: { header: '?gfPageHeader', body: 'gfPageBody', }, link: function(scope, elem, attrs) { console.log(scope); }, }; } coreModule.directive('gfPage', gfPageDirective);