v-simple-magnifier
v1.1.2
Published
a vue directive to use on img elements to zoom on hover
Downloads
3
Readme
v-simple-magnifier
a vue directive to use on img elements to zoom on hover
most of the credit goes to anthinkingcoder, I made my directive based on that
usage
npm install v-simple-magnifier
# or
yarn add v-simple-magnifier
then add it to your vue application:
// add it to your vue application:
import VSimpleMagnifier from 'v-simple-magnifier';
import Vue from 'vue';
Vue.use(VSimpleMagnifier);
then use it:
<template>
<img src="some-image-src" v-simple-magnifier>
</template>