Angular 2 - ViewEncapsulation.Native在ES5中未定义

时间:2016-04-22 08:44:00

标签: angular angular2-template

我想在纯JS iem ES5中编写的Angular 2代码中使用ViewEncapsulation.Native。但它给出了未定义的。如何在es5中访问它?

1 个答案:

答案 0 :(得分:1)

您可以尝试以下方法:

var AppComponent = ng.core
    .Component({
      selector: 'my-app',
      template: '<div>Test</div>',
      viewEncapsulation: ng.core.ViewEncapsulation.Native
    })
    .Class({
      constructor: function () {
        (...)
      }
    });