This project was created in order to learn more about Vue changes from version 2 to 3 and practice the setup of a scalable VueJs project.
The objective of the game is to move all the pieces from one tower to another. The only rule is that a piece can only be positioned on a bigger piece or an empty tower. There is always a perfect solution, based on the number of pieces. The number of movements on a perceft solution can be found trought:
2 ^ n + 1
Where 'n' is the number of pieces in the game.
Get piece from / Put piece on top of tower
Add piece to game ( restarts the game )
Remove piece from game ( restarts the game )
All the hotkeys are configurable.
yarn install
Compiles and hot-reloads for development
yarn serve
Compiles and minifies for production
yarn build
Lints and fixes files
yarn lint