undo
Description
Optional. Enables executing the undo and redo actionsDoesn't work for the tree mode.
Usage
undo?: boolean;
Parameters
true- allows executing theundoandredoactionsfalse(default) - the ability to call theundoandredoactions is disabled
Example
<script setup>
import { Grid } from "@svar-ui/vue-grid";
</script>
<template>
<Grid :undo="true" v-bind="otherProps" />
</template>