将我的 Angular2 组件转换为 ES6 语法需要什么?

What do I need to convert my Angular2 component to ES6 syntax?

index.js

这是我的切入点

import * as stylesheet from '../assets/styles/app.scss';

import jQuery from '../node_modules/jquery/dist/jquery';
import $ from '../node_modules/jquery/dist/jquery';

import {bootstrap}    from './boot'
import {AppComponent} from './app.component'

bootstrap(AppComponent);

app.component.js

这个有效

(function (app) {
    app.AppComponent = ng.core
        .Component({
            selector: 'my-app',
            template: '<h1>My First Angular 2 App</h1>'
        })
        .Class({
            constructor: function () {
            }
        });
})(window.app || (window.app = {}));

问题

我尝试使用 How do I write angular2 without decorator syntax? 的答案,但没有成功。

未经测试!

import {Component} from 'angular2/core';

@Component({
  selector: 'my-app',
  template: `
    <h1>
        My First Angular 2 App
    </h1>
  `
})
export class AppComponent {
  constructor () {

  }
}

也许您认为自己需要 app 变量有点困惑?

需要说明的是,您不需要引用 app,您只需导入 AppComponent(因为您已有)

如果您正在使用 Babel 并使用以下插件:'angular2-annotations', 'transform-decorators-legacy', 'transform-class-properties', 'transform-flow-strip-types' 无需转换语法。

您也可以在 working example.

中查看