Cannot find module 'angular2/angular2'

后端 未结 11 886
有刺的猬
有刺的猬 2020-11-30 06:43

I am developing an node app with angular2 and gulp. I have written a component file login.ts as follows:

import {Component, View} from \'angular2/angular2\';         


        
11条回答
  •  渐次进展
    2020-11-30 07:06

    import {Component} from "@angular/core";
    
    @Component({
      selector: "userForm",
      template: '
    ' }); export class userForm{ public flag = false; //boolean value: true/false }

提交回复
热议问题