2018-04-04 11:56:16 +00:00
|
|
|
import ngModule from '../../module';
|
|
|
|
|
|
|
|
class Controller {
|
2018-04-18 07:47:05 +00:00
|
|
|
constructor($scope) {
|
2018-04-04 11:56:16 +00:00
|
|
|
this.$scope = $scope;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-18 07:47:05 +00:00
|
|
|
Controller.$inject = ['$scope'];
|
2018-04-04 11:56:16 +00:00
|
|
|
|
|
|
|
ngModule.component('vnTicketDataStepOne', {
|
|
|
|
template: require('./step-one.html'),
|
2018-04-18 07:47:05 +00:00
|
|
|
controller: Controller,
|
2018-04-04 11:56:16 +00:00
|
|
|
bindings: {
|
|
|
|
ticket: '<'
|
2018-04-18 07:47:05 +00:00
|
|
|
}
|
2018-04-04 11:56:16 +00:00
|
|
|
});
|