0.2.2 • Published 5 years ago

vue-games v0.2.2

Weekly downloads
59
License
MIT
Repository
github
Last release
5 years ago

npm version license

vue-games

Different word games mades as separated components to be reused. This npm package allows you to include this components in your vue application.\

You can check a demo online here :)

Installation

npm install --save vue-games

Every component will have a default array with some words to play. Will show a play again button every time a game is ended, you can choose not showing it by sending showPlayAgain value in false. By default, language is english for some messages. Its posible to change default language (only to spanish for now).

Hangman Game

HangmanScreenshot

<template>
  <hangman-game />
</template>

<script>
import 'vue-games'
</script>

Properties

PropertyTypeDefault ValueValid Values
wordsArray['Pear', 'Apple', 'Tomatoe', 'Blackberry', 'Strawberry']
showPlayAgainBooleantrue
langStringEN['EN', 'ES']

Every time a game ends this component will emit gameFinished with the current word, and a boolean value telling if the playes has won or has lost.

Usage example:

Lets say we are spanish speakers, so we want to change default values:

<template>
  <hangman-game
    :words="words"
    :show-play-again="false"
    :lang="ES"
    @gameFinished="gameFinished"
  />
</template>
<script>
import 'vue-games'
export  default {
  data () {
    return {
      words: ['Pera', 'Manzana', 'Tomate', 'Cereza', 'Frutilla'],
    }
  },

  methods: {
    gameFinished: function (word, lose) {
      console.log('game finished!!!')
      console.log('user was guessing word:', word)
      console.log('she/he/it lost?', lose)
    }
  }
}
</script>

Crossword Game

CrosswordScreenshot

<template>
  <crossword-game />
</template>

<script>
import 'vue-games'
</script>

Properties

PropertyTypeDefault ValueValid Values
wordsArray[{'word': 'Coffee','description': 'Many people drink it in the morning with milk or cream.'},{'word': 'Tea','description': "British people drink it at 5 o' clock."}]
showPlayAgainBooleantrue
langStringEN['EN', 'ES']

License

This software is distributed under MIT license.

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago

1.0.0

5 years ago