在 Angular 中集成
请先阅读安装和基本使用。以下示例通过 Angular 将 Univer Pdfs 挂载到具有明确高度的容器中。
集成步骤
- 在
ngAfterViewInit中初始化 Univer - 在
ngOnDestroy中销毁 Univer
示例代码
TypeScript
import type { AfterViewInit, ElementRef, OnDestroy } from '@angular/core'import { Component, ViewChild } from '@angular/core'import { UniverLicensePlugin } from '@univerjs-pro/license'import { UniverPdfsPlugin } from '@univerjs-pro/pdfs'import { UniverPdfsUIPlugin } from '@univerjs-pro/pdfs-ui'import PdfsUIzhCN from '@univerjs-pro/pdfs-ui/locale/zh-CN'import { LocaleType, mergeLocales, Univer } from '@univerjs/core'import { FUniver } from '@univerjs/core/facade'import DesignzhCN from '@univerjs/design/locale/zh-CN'import { UniverUIPlugin } from '@univerjs/ui'import UIzhCN from '@univerjs/ui/locale/zh-CN'import '@univerjs/design/lib/index.css'import '@univerjs/ui/lib/index.css'import '@univerjs-pro/pdfs-ui/lib/index.css'import '@univerjs-pro/pdfs/facade'@Component({ selector: 'app-univer', standalone: true, template: '<div #container style="height: 600px"></div>',})export class UniverComponent implements AfterViewInit, OnDestroy { @ViewChild('container') containerRef!: ElementRef<HTMLDivElement> private univer?: Univer ngAfterViewInit() { const container = this.containerRef.nativeElement const univer = new Univer({ locale: LocaleType.ZH_CN, locales: { [LocaleType.ZH_CN]: mergeLocales( DesignzhCN, UIzhCN, PdfsUIzhCN, ), }, }) univer.registerPlugin(UniverLicensePlugin, { license: 'your license.txt', }) univer.registerPlugin(UniverUIPlugin, { container }) univer.registerPlugin(UniverPdfsPlugin) univer.registerPlugin(UniverPdfsUIPlugin) const univerAPI = FUniver.newAPI(univer) univerAPI.createPdf({ name: 'Untitled PDF' }) this.univer = univer } ngOnDestroy() { this.univer?.dispose() }}你觉得这篇文档如何?