2018-04-17 10:19:40 +00:00
|
|
|
import ngModule from '../../module';
|
2018-04-17 12:49:55 +00:00
|
|
|
import './style.scss';
|
2018-04-17 10:19:40 +00:00
|
|
|
|
|
|
|
ngModule.component('vnLabelValue', {
|
2018-06-07 21:47:19 +00:00
|
|
|
template: require('./label-value.html'),
|
2018-04-17 10:19:40 +00:00
|
|
|
replace: true,
|
|
|
|
transclude: true,
|
|
|
|
bindings: {
|
|
|
|
label: '@',
|
|
|
|
value: '@'
|
|
|
|
}
|
|
|
|
});
|