Integrate in Astro
Start with installation and basic usage. This example uses Astro to mount Univer Sheets 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
- Initialize Univer in
mount()/astro:page-load. - Dispose of Univer in
astro:before-swap.
Example
Astro
<div id="univer-sheets" style="height: 600px"></div><script> import type { Univer } from '@univerjs/presets' import { UniverSheetsCorePreset } from '@univerjs/preset-sheets-core' import UniverPresetSheetsCoreenUS from '@univerjs/preset-sheets-core/locales/en-US' import { createUniver, LocaleType, mergeLocales } from '@univerjs/presets' import '@univerjs/preset-sheets-core/lib/index.css' let univerInstance: Univer | undefined function mount() { const container = document.getElementById('univer-sheets') if (!container || univerInstance) return const { univer, univerAPI } = createUniver({ locale: LocaleType.EN_US, locales: { [LocaleType.EN_US]: mergeLocales(UniverPresetSheetsCoreenUS) }, presets: [UniverSheetsCorePreset({ container })], }) univerAPI.createWorkbook({}) 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?