PrimeNG p-editor 显示不正确

问题描述 投票:0回答:0

我的 p-editor 没有在现场正确显示。请检查下图: Top of the page Bottom of the page

它只显示大型 SVG 和底部的几个输入。

我正在使用 Angular v15.2.4、NodeJS v18.15.0、PrimeNG v15.2.1。 我还通过npm install quill安装了quill

app.module.ts

import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';

import { EditorModule } from 'primeng/editor';

@NgModule({
  declarations: [AppComponent, HomeComponent],
  imports: [
    BrowserModule,
    AppRoutingModule,
    FormsModule,
    EditorModule,
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

app.component.html

<h5>Write Here</h5>
<p-editor [style]="{ height: '120px' }"></p-editor>

<router-outlet></router-outlet>

我已经尝试将我的 Angular 和 NodeJS 更新到最新版本,但无济于事。 我试过在线教程/示例(官方 PrimeNG 网站),它给了我相同的结果。甚至尝试从一种浏览器更改为另一种浏览器。

angular typescript primeng quill
© www.soinside.com 2019 - 2024. All rights reserved.