マインスイーパー・ミニアプリ

モグラ叩きみたいにミニアプリの実装はチェックポイントに分解されています。

git checkout checkpoint-0 から初めてください!

Git のワークフロー

  1. Begin by forking this repository.

forking

  1. Then, clone down your fork: git clone YOUR_FORK_URL

  2. Then, checkout the appropriate checkpoint branch. Example, for checkpoint 0:

git checkout checkpoint-0 (checkpoint-0 is the branch name)

  1. Read checkpoints/checkpoint-0.md (for checkpoint 0)

  2. Do some work, then make a commit using git commit.

  3. Once you finish the work for a checkpoint, checkout the next branch. Example: git checkout checkpoint-1

  4. Continue working until you finish!

セットアップ

# install dependencies
npm install

アプリを実行する

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report

セットアップに関して詳しくは VueJS Templates GuideVue-Loader Docs をご覧ください。