<div *ngIf="validationErrors.myField">{{validationErrors.myField}}</div>
, в ангуляре, который js правда с таким вариантом возможны проблемы, в связи с тем что переменные в объекты не реактивны, поэтому там лучше так делать: <div *ngIf="hasValidationError">{{validationErrors.myField}}</div>
// Select the email link anchor text
var emailLink = document.querySelector('.js-emaillink');
var range = document.createRange();
range.selectNode(emailLink);
window.getSelection().addRange(range);
try {
// Now that we've selected the anchor text, execute the copy command
var successful = document.execCommand('copy');
var msg = successful ? 'successful' : 'unsuccessful';
console.log('Copy email command was ' + msg);
} catch(err) {
console.log('Oops, unable to copy');
}
// Remove the selections - NOTE: Should use
// removeRange(range) when it is supported
window.getSelection().removeAllRanges();