# Example 2: Tic-Tac-Toe

A grid functioning as a playing field and another functioning as a container for playing pieces. You can drag as many pieces as you want from the container to the field.

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


<Example2TicTacToe />
</ClientOnly>