13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
|
import ngModule from '../../module';
|
||
|
import Component from '../../lib/component';
|
||
|
|
||
|
ngModule.component('vnLabelValue', {
|
||
|
template: require('../label-value/label-value.html'),
|
||
|
replace: true,
|
||
|
transclude: true,
|
||
|
bindings: {
|
||
|
label: '@',
|
||
|
value: '@'
|
||
|
}
|
||
|
});
|