2018-07-03 13:00:33 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-18 07:35:59 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-07-03 13:00:33 +00:00
|
|
|
|
2020-04-30 10:48:52 +00:00
|
|
|
class Controller extends Section {}
|
2018-07-03 13:00:33 +00:00
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnTicketSaleTracking', {
|
2018-07-03 13:00:33 +00:00
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
2018-10-28 11:36:41 +00:00
|
|
|
ticket: '<',
|
|
|
|
},
|
2018-07-03 13:00:33 +00:00
|
|
|
});
|