Tic Tac Vue Save

A simple Tic-Tac-Toe game written in Vue.

Project README

Tic-Tac-Vue

Tic-Tac-Vue is a simple JavaScript Single Page Application (SPA) written with Vue, Vuex and Vue Router. Its goal is to be a "case study" for beginners who want to learn Vue and its powerful ecosystem.

Click here to try the online demo version.

Table of content

Methodologies

In this project I adopted two methodologies to have a better factored code and organized source files: BEM and Atomic Design.

BEM

BEM (which means Block Element Modifier) is a methodology that helps you to create reusable components in front-end development. It's all about splitting your CSS classes using Blocks, Elements and Modifiers. The final DOM could be verbose, but you will have a better factored source code and, because of you don't have to nest CSS classes, your CSS bundle will result less heavy.

Click here if you want to go deeper into BEM.

Atomic Design

Atomic Design is a methodology for creating design systems. Similarly to chemistry, you can organize your components file (in this scenario Vue Single File Components) using atoms, molecules and organisms.

Atoms

Atoms are the basic building blocks of matter. Applied to web interfaces, atoms are our HTML tags, such as a form label, an input or a button.

Molecules

Molecules are groups of atoms bonded together and are the smallest fundamental units of a compound.

Organisms

Organisms are groups of molecules joined together to form a relatively complex, distinct section of an interface.

Technical skills

First of all, I strongly suggest you to have a look at Vue documentation, especially to:

Install

You can install Tic-Tac-Vue cloning the project:

git clone https://github.com/Sanfra1407/tic-tac-vue.git

then install npm dependencies:

npm install

Usage

Since this project has been developed with Vite.js, you can use its own integrated CLI commands to serve, build or to have a preview of the application.

Start dev server

npm run dev

Compiles and minifies for production

npm run build

Preview of the built application

npm run preview

Lints and fixes files

npm run lint

Deploy

To deploy your application, you can follow the official Vite.js guide.

Open Source Agenda is not affiliated with "Tic Tac Vue" Project. README Source: Sanfra1407/Tic-Tac-Vue

Open Source Agenda Badge

Open Source Agenda Rating