我有一个非常简单的angular2项目,配置为与Gulp,Bundle和ECM6一起工作. Bundle将创建一个大文件,其中包含已翻译的角色的ECM5和我的应用程序.
<!DOCTYPE html> <html> <head> <title>Angular 2 Test</title> <script src="bundle.js"></script> </head> <body> <mainapp> </mainapp> </body> </html>
角度应用程序定义如下:
import {Component,View,bootstrap} from 'angular2/core'; export class mainComponent { static get annotations() { return [ new Component({ selector: 'mainapp' }),new View({ template: `<div>Hello!</div>` }) ]; } } bootstrap(mainComponent);
但是当我加载它时,我会继续收到错误
"selector 'mainapp' did not match any element"