我有一个Angular 2应用程序,并且我尝试按照软件包自述文件中的说明在其中安装angular2-autosize
组件(https://github.com/stevepapa/angular2-autosize)。我在下面跑:
npm install angular2-autosize --save
成功完成。我可以在“ node_modules”目录中看到一个
angular2-autosize
文件夹。此外,一个依赖项被添加到我的package.json中
"angular2-autosize": "^1.0.1"
现在,我进入我的
app.module.ts
文件,并添加以下内容:import { Autosize } from 'angular2-autosize';
@NgModule({
declarations: [
..
Autosize
并尝试使用
ng build
进行构建,但无法说明,找不到模块“ angular2-autosize”。
最佳答案
我变了import { Autosize } from 'angular2-autosize';
在app.module.ts
文件中,
至,import { Autosize } from 'angular2-autosize/angular2-autosize';
它的工作:)