All Projects → Sanfra1407 → Tic Tac Vue

Sanfra1407 / Tic Tac Vue

Licence: mit
A simple Tic-Tac-Toe game written in Vue.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Tic Tac Vue

Vue Home
🏠 A simple project(Vue Community SPA) which bases on vue+vue-cli+vue-router+axios+ scss.
Stars: ✭ 256 (+782.76%)
Mutual labels:  vuex, scss, vue-router
Vue Chat
👥Vue全家桶+Socket.io+Express/Koa2打造一个智能聊天室。
Stars: ✭ 887 (+2958.62%)
Mutual labels:  vuex, scss, vue-router
Vue Chat
📲 A web chat application. Vue + node(koa2) + Mysql + socket.io
Stars: ✭ 617 (+2027.59%)
Mutual labels:  vuex, scss, vue-router
Vue Cnode
🔥Vue.js打造一个开源的CNode社区。CNode by Vue.js
Stars: ✭ 249 (+758.62%)
Mutual labels:  vuex, scss, vue-router
Vue Music Player
🎵Vue.js写一个音乐播放器+📖One(一个).A music player + One by Vue.js
Stars: ✭ 729 (+2413.79%)
Mutual labels:  vuex, scss, vue-router
Vms
A Vue.js 2.0 Content Management System
Stars: ✭ 885 (+2951.72%)
Mutual labels:  vuex, vue-router
Vue Meteor
🌠 Vue first-class integration in Meteor
Stars: ✭ 893 (+2979.31%)
Mutual labels:  vuex, vue-router
Vue Chatroom
Vue全家桶 + socket.io + express 搭建的聊天室+ 智能问答助手
Stars: ✭ 27 (-6.9%)
Mutual labels:  vuex, vue-router
Cocomusic
a simple music player built by electron and vue
Stars: ✭ 937 (+3131.03%)
Mutual labels:  vuex, vue-router
Hackernews
HackerNews clone built with Nuxt.js
Stars: ✭ 758 (+2513.79%)
Mutual labels:  vuex, vue-router
Manhuaren
vue2.0全家桶,仿漫画人官网(移动端)
Stars: ✭ 18 (-37.93%)
Mutual labels:  vuex, vue-router
Ctph h5 wx
It's a vue SPA wechat webapp
Stars: ✭ 28 (-3.45%)
Mutual labels:  vuex, vue-router
Vue2 Study
vue 的webpack配置,按需加载,element-ui,vuex
Stars: ✭ 16 (-44.83%)
Mutual labels:  vuex, vue-router
Jdf Phone Ui
🖖 前端混合开发整合框架(cordova插件,微信,H5)
Stars: ✭ 18 (-37.93%)
Mutual labels:  vuex, vue-router
Vue 163 Music
【停止维护】网易云音乐web版,支持PC端常用功能,localStorage保存播放列表
Stars: ✭ 788 (+2617.24%)
Mutual labels:  vuex, vue-router
Mall Vue
基于Vue+Vuex+iView的电子商城网站
Stars: ✭ 929 (+3103.45%)
Mutual labels:  vuex, vue-router
Nuxt Ssr Demo
✨ 高仿掘金,整合 vue + nuxt + axios + vuex + vue-router (nuxt 自带 vuex 和 vue-router),一个基于 Nuxt 的服务器端渲染 Demo
Stars: ✭ 856 (+2851.72%)
Mutual labels:  vuex, vue-router
Vue Music
基于vue2.0的网易云音乐播放器,api来自于NeteaseCloudMusicApi,v2.0为最新版本
Stars: ✭ 855 (+2848.28%)
Mutual labels:  vuex, vue-router
Vue Qq
🎨 Vue family bucket with socket.io and express/koa2 , create a web version of mobile QQ, supporting real-time group chat, real-time private chat, special care, shielding chat, smart IP geographic location, real-time display temperature and other QQ core functions
Stars: ✭ 861 (+2868.97%)
Mutual labels:  vuex, vue-router
Nuxt.js
The Intuitive Vue(2) Framework
Stars: ✭ 38,986 (+134334.48%)
Mutual labels:  vuex, vue-router

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 I currently use in MotorK (the company I've been working with) 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.

To read more about BEM pattern, click here.

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.

To read more about Atomic Design pattern, click here.

(This project doesn't have organisms: it only has atoms, molecules and pages.)

Technical skills

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

These are the minimum requirements to have a better approach with Tic-Tac-Vue.

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 the amazing Vue-CLI, you can use its own integrated CLI commands to serve or build the application.

Start dev server

npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].