A tiny game written in vue3
. It's inspired by IgorMinar's Memory-Game. You can view the online demo here.
If you are looking for
angular5
version, check it here
If you are looking for
react
version, check it here
vite is involved as build tool here.
Game
, the whole game boardScoreBoard
, the panel on the top, including "Logo", "Progress", "Highest Record"Logo
, on the left ofScoreBoard
, showing the game LogoProgress
, on the center ofScoreBoard
, showing the current matching informationScore
, on the right ofScoreBoard
, showing the best resultChessBoard
, on the center ofGame
, the playing areaCard
, each card in theChessboard
GameStatus
, the footer part, displaying current status of game
vue-memory-game
├── src
| ├── assets
| | ├── 8-ball.png
| | ├── ...
| | └── zeppelin.png
│ │
│ ├── components
│ │ ├── ChessBoard
│ │ │ ├── Card.vue
│ │ │ └── index.vue
│ │ ├── ScoreBoard
│ │ │ ├── index.vue
│ │ │ ├── Logo.vue
│ │ │ ├── Progress.vue
│ │ │ └── Score.vue
│ │ ├── GameStatus.vue
│ │ └── Game.vue
│ │
│ ├── stores
│ │ ├── CountTimer.ts
│ │ ├── GameStore.ts
│ │ └── index.ts
│ │
│ ├── Game.vue
│ ├── IType.ts
│ ├── main.ts
│ ├── shims-vue.d.ts
│ └── vite-env.d.ts
│
├── index.html
├── package.json
├── tsconfig.json
└── vite.config.ts
#cloning code
git clone https://github.com/leftstick/vue-memory-game.git
cd vue-memory-game
#install dependencies
yarn
#start debug server
yarn start
Now, view the demo at http://localhost:3000/vue-memory-game/