在 Vue 中集成
请先阅读安装和基本使用。以下示例通过 Vue 将 Univer Pdfs 挂载到具有明确高度的容器中。
集成步骤
- 在
onMounted中初始化 Univer - 在
onBeforeUnmount中销毁 Univer
示例代码
Vue
<script setup lang="ts">import { onBeforeUnmount, onMounted, ref } from 'vue'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'const containerRef = ref<HTMLDivElement | null>(null)let univerInstance: Univer | undefinedonMounted(() => { const container = containerRef.value if (!container) return 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' }) univerInstance = univer})onBeforeUnmount(() => univerInstance?.dispose())</script><template> <div ref="containerRef" style="height: 600px" /></template>你觉得这篇文档如何?