Cannot find module 'angular2/angular2'

后端 未结 11 894
有刺的猬
有刺的猬 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:14

    It changed module just ahead of going beta to

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

    FYI: bootstrap also changed to

    import {bootstrap} from 'angular2/platform/browser';
    

    as a result a lot of the blog posts on the net are out of date :-(

提交回复
热议问题