Skip to main content

undo

Description

Optional. Enables executing the undo and redo actions

Doesn't work for the tree mode.

Usage

undo?: boolean;

Parameters

  • true - allows executing the undo and redo actions
  • false (default) - the ability to call the undo and redo actions is disabled

Example

<script setup>
import { Grid } from "@svar-ui/vue-grid";
</script>

<template>
<Grid :undo="true" v-bind="otherProps" />
</template>