Collaboration
Collaborative editing connects your browser editor to a backend. Start with Collaboration integration to run the example and connect your application's identity, permissions, and storage. See Office Quick Start for the browser and server configuration.
Create the document through an authenticated application API, then load the returned Unit identifier with the method below. Reuse that identifier when opening the same document again.
Facade API
TypeScript
import '@univerjs-pro/collaboration-client/facade'const collaboration = univerAPI.getCollaboration()const unit = await collaboration.loadSheetAsync('your-unit-id')How is this guide?