Skip to content

devmor-j/peek-a-vue

Repository files navigation

Peek a Vue

Classic card matching game built with Vue 3.

Preview (gif)

Features

  • 4x4 Gameboard with 8 unique shapes
  • Has start/restart game buttons
  • Shows confetti when player wins
  • Great game mechanics and tested with no (known) bugs
  • Written in Vue setup hook architecture.
  • Uses lodash shuffle function for shuffling cards.

How to develop this project

Either clone this repo:

git clone https://github.com/devmor-j/peek-a-vue.git

or use degit to only get the lastest of branch main:

npx degit https://github.com/devmor-j/peek-a-vue.git

then install dependencies with your package manager:

npm install

Scripts (based on vue-cli)

  • Compiles and hot-reloads for development:

    npm run serve

  • Compiles and minifies for production:

    npm run build

  • Lints and fixes files:

    npm run lint

To customize configurations See Configuration Reference.