A simple, highly customisable image effect component for Vue 2.x
npm install vue-image-effect

A simple, highly customisable image effect component for Vue.
- Customisable image.
- Customisable size image.
- Create and customisablee description image.
- Good SEO for image
Install via npm:
npm install vue-image-effect
Then require in your project:
var VueImage = require('vue-image-effect');
or ES6 syntax:import VueImage from 'vue-image-effect'
Then you can register the component globally:
Vue.component('vue-image-effect', VueImage);
Or in your Vue component:
``javascript`
components: {
VueImage
}
You can then use the following markup in your project:
You may also include vue-image-effect directly in to your webpage via Unpkg. Simply add the following script tag:
You will need to register the component by doing:
`javascript``
Vue.component('vue-image', VueImageEffect.default);
You may also register the component locally via the components option.
Please check the Contributing Guidelines.
Issues and PRs are welcome !