简体   繁体   中英

Changed imports in angular material

I started creating a new website with angular 9 and angular material. So far this worked:

import {MatSidenavModule, MatToolbarModule} from '@angular/material';

now i get an error and have to change it to:

import { MatSidenavModule } from '@angular/material/sidenav';
import { MatToolbarModule } from '@angular/material/toolbar';

Something changed with the imports in Angular 9 and material? I found nothing in the documentation.

Check this link for Angular updates

For angular material you have to do according to the documentation:

Instead of importing from @angular/material, you should import deeply from the specific component. Eg @angular/material/button. 在此处输入图片说明

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