我想在纯JS iem ES5中编写的Angular 2代码中使用ViewEncapsulation.Native。但它给出了未定义的。如何在es5中访问它?
答案 0 :(得分:1)
您可以尝试以下方法:
var AppComponent = ng.core
.Component({
selector: 'my-app',
template: '<div>Test</div>',
viewEncapsulation: ng.core.ViewEncapsulation.Native
})
.Class({
constructor: function () {
(...)
}
});