Integrate in Astro

Start with installation and basic usage. This example uses Astro to mount Univer Docs in a container with an explicit height.

Use a normal <script> to initialize the editor directly in the browser. Run initialization on the first load and on astro:page-load; dispose before astro:before-swap when using ClientRouter. Keep editor imports out of Astro frontmatter. See Astro navigation events.

Integration Steps

  1. Initialize Univer in mount() / astro:page-load.
  2. Dispose of Univer in astro:before-swap.

Example

Astro
<div id="univer-docs" style="height: 600px"></div><script>  import type { Univer } from '@univerjs/presets'  import { UniverDocsCorePreset } from '@univerjs/preset-docs-core'  import UniverPresetDocsCoreenUS from '@univerjs/preset-docs-core/locales/en-US'  import { createUniver, LocaleType, mergeLocales } from '@univerjs/presets'  import '@univerjs/preset-docs-core/lib/index.css'  let univerInstance: Univer | undefined  function mount() {    const container = document.getElementById('univer-docs')    if (!container || univerInstance) return    const { univer, univerAPI } = createUniver({      locale: LocaleType.EN_US,      locales: { [LocaleType.EN_US]: mergeLocales(UniverPresetDocsCoreenUS) },      presets: [UniverDocsCorePreset({ container })],    })    univerAPI.createDocument({})    univerInstance = univer  }  function dispose() {    univerInstance?.dispose()    univerInstance = undefined  }  mount()  document.addEventListener('astro:page-load', mount)  document.addEventListener('astro:before-swap', dispose)</script>

How is this guide?

© 2026 DreamNum Co., Ltd.