salix/modules/ticket/front/sale-tracking/index.js

13 lines
282 B
JavaScript
Raw Permalink Normal View History

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