Skip to content

A Vue Wrapper for jquery-zoom plugin

Notifications You must be signed in to change notification settings

busynoggin/vue-zoom

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-zoom

Install / Usage

$ npm install vue-zoom
<template>
   <div id="app">
      <v-zoom :img="img" :width="width"></v-zoom>
   </div>
</template>

<script>
import vZoom from 'vue-zoom'
export default {
  components: {vZoom},
  data() {
     return {
        img: 'photo.jpg',
        width: 500
     }
  }
}
</script>

Releases

No releases published

Packages

No packages published

Languages

  • Vue 77.2%
  • JavaScript 18.4%
  • HTML 4.4%