salix/modules/worker/front/department/basic-data/index.js

13 lines
309 B
JavaScript
Raw Normal View History

2023-05-16 06:54:54 +00:00
import ngModule from '../../module';
2023-05-15 08:43:06 +00:00
import Section from 'salix/components/section';
2023-05-29 12:46:39 +00:00
export default class Controller extends Section {}
2023-05-15 08:43:06 +00:00
2023-05-26 10:21:15 +00:00
ngModule.vnComponent('vnWorkerDepartmentBasicData', {
2023-05-15 08:43:06 +00:00
template: require('./index.html'),
controller: Controller,
bindings: {
2023-05-29 12:46:39 +00:00
department: '<'
2023-05-15 08:43:06 +00:00
}
});