|
import ngModule from '../../module';
|
|
|
|
class Controller {
|
|
constructor($scope) {
|
|
this.$scope = $scope;
|
|
}
|
|
}
|
|
|
|
Controller.$inject = ['$scope'];
|
|
|
|
ngModule.component('vnTicketDataStepOne', {
|
|
template: require('./step-one.html'),
|
|
controller: Controller,
|
|
bindings: {
|
|
ticket: '<'
|
|
}
|
|
});
|