import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { CalendarModule } from 'primeng/calendar';
@NgModule({ imports: [BrowserModule, BrowserAnimationsModule, CalendarModule], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { }
import { Component } from '@angular/core';
@Component({ selector: 'app-table', templateUrl: './table.component.html' }) export class TableComponent { appendTo: any = 'body'; }
这样设置后,日历弹出框将会被放置在HTML body标签内,而不是放在表格下方。