Skip to main content

autoSave

Description

Optional. Controls the automatic saving of data in the editor

Usage

autoSave?: boolean;

Examples

Disabling auto-saving

<Editor :items="items" :autoSave="false" />

This example sets the autoSave property to false, requiring user action to save data.

Enabling auto-saving

<Editor :items="items" :autoSave="true" />

This example sets the autoSave property to true, allowing data to be saved automatically on any changes.