简体   繁体   中英

Cannot find module in Typescript

hy guys i have problem like this,

i have a app.typescript and inside it i import

import { Component } from '@angular/core'; 
import {CORE_DIRECTIVES} from '@angular/common'; 
import { MODAL_DIRECTVES } from 'ng2-bootstrap';

@Component({
  moduleId: module.id,
  selector: 'my-app',
  templateUrl: 'my-app.component.html',
  styleUrls: ['my-app.component.css'],
  directives: [MODAL_DIRECTVES]
})
export class my-appComponent {
  title = 'Mp App';
}

but when i run it i got an error that say cant find module ng2-bootstrap

As per the documentation here . It appears you must import from a nested path:

import { MODAL_DIRECTIVES } from 'ng2-bootstrap/ng2-bootstrap';

or

import { MODAL_DIRECTIVES } from 'ng2-bootstrap/components/modal';

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM