2019-11-10 10:08:44 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
import ModuleMain from 'salix/components/module-main';
|
|
|
|
|
2022-02-28 11:40:44 +00:00
|
|
|
export default class Claims extends ModuleMain {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
|
|
|
}
|
|
|
|
}
|
2019-11-10 10:08:44 +00:00
|
|
|
|
|
|
|
ngModule.vnComponent('vnClaim', {
|
2022-02-28 11:40:44 +00:00
|
|
|
controller: Claims,
|
2019-11-10 10:08:44 +00:00
|
|
|
template: require('./index.html')
|
|
|
|
});
|