Does Angular 2 use Shadow DOM or a Virtual DOM?
update Shadow DOM is now directly supported. original Angular2 doesn’t use shadow DOM (default) nor virtual DOM. With encapsulation: ViewEncapsulation.Emulated (default) there is no shadow DOM because style encapsulation is only emulated. encapsulation: ViewEncapsulation.Native enables shadow DOM on browsers that support it natively or it’s again emulated when the webcomponents polyfill is loaded. Shadow DOM … Read more