Добрый день!
const rootModule = angular
.module('app.rootSchedule', [
uiRouter,
mainFilter.name
])
.component('app.rootSchedule', {
template,
controller: rootScheduleController
})
class rootScheduleController {
constructor(dataService, $uibModal, $compile, $window, $http, storageService, $settings, $stateParams, $scope) {
this.mainFilter = null;
В классе контроллера rootScheduleController мне нужно отследить загрузился ли мой компонет mainFilter, который в html предствлен директивой
<main-filter on-change="$ctrl.filterChange(value)"></main-filter>