Skip to content
Snippets Groups Projects
Disabled.md 487 B
Newer Older
# Example 6: Disabled grid

This uses the same data as the tic-tac-toe but is completely disabled.
Notice how the items still move if the tic-tac-toe data
change. Uncheck the checkbox to enable:

The grid can also be in a loading state, in which it is disabled as well,
but it displays loading symbols everywhere. Check the checkbox to try:

<ClientOnly>
<script setup>
import Example6Disabled from "../../example/src/Example6Disabled.vue";
</script>


<Example6Disabled />
</ClientOnly>