autoSave
Description
Optional. Controls the automatic saving of data in the editorUsage
autoSave?: boolean;
Examples
Disabling auto-saving
<Editor {items} autoSave={false} />
This example sets the autoSave property to false, requiring user action to save data.
Enabling auto-saving
<Editor {items} autoSave={true} />
This example sets the autoSave property to true, allowing data to be saved automatically on any changes.