Vue 3 for Beginners - Building a tick tac toe game with the Composition API

Learn Vue 3 composition API as a beginner. If you don’t know about Vue 3’s composition API, today we will be making a tic-tac-toe game to learn the basics. The Composition API in Vue 3 adds a new way to build highly reusable logic and make maintain large codebases a lot easier. This game will be a single page application that will contain both the game and a history of any previously played games. For UI we will be using bootstrap 5 which adds a bunch of nice CSS classes that we can use with our Vue compon
Back to Top