11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
|
import ngModule from '../module';
|
||
|
import Section from 'salix/components/section';
|
||
|
|
||
|
ngModule.vnComponent('vnShelvingBasicData', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Section,
|
||
|
bindings: {
|
||
|
shelving: '<'
|
||
|
}
|
||
|
});
|