Skip to content

meganetaaan/vue-8-puzzle

Folders and files

NameName
Last commit message
Last commit date
Mar 25, 2018
Mar 4, 2018
Feb 27, 2018
Mar 27, 2018
Sep 28, 2019
Feb 24, 2018
Mar 18, 2018
Feb 24, 2018
Feb 24, 2018
Feb 24, 2018
May 24, 2019
Mar 25, 2018
Mar 25, 2018
Feb 24, 2018
Feb 22, 2018
Mar 27, 2018
Feb 27, 2018
Mar 31, 2018
Dec 10, 2022
Oct 1, 2019
Feb 26, 2018
Dec 10, 2022

Repository files navigation

Vue-8-puzzle

An itty-bitty slide puzzle game made as Vue.js component

PLAY DEMO

8-puzzle

Images/Videos for source

select-source

Auto-resize

resize

Install and Usage

$ npm install vue-8-puzzle --save
import Vue from 'vue'
import PuzzleBoard from 'vue-8-puzzle'
import videoSrc from 'myvideo.webm'

let v = new Vue({
  el: '#app',
  template: `
    <app>
      <puzzle-board
      :src="videoSrc" />
    </app>`,
  components: {
    PuzzleBoard
  }
})

Props

Props Type Description Default
src String source path -
sources Array source paths -
cols number number of columns 4
rows number number of rows 4
autoResize boolean when true the component fits to its root automatically false
showNumber boolean when true the component shows tile numbers on the video true

Events

Event Payload Description
init none the puzzle is initialized
start none the tile start to move
change none the tile changes
finish none all the tile is on correct position