You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Hello, after installing plugin via npm, it throws me error:
at install (index.js:75:22)
at Object.use (runtime-core.esm-bundler.js:4331:21)
at main.js:33:5
in my main.js is:
import VueImg from 'v-img';
const vueImgConfig = {
// Use `alt` attribute as gallery slide title
altAsTitle: false,
// Display 'download' button near 'close' that opens source image in new tab
sourceButton: false,
// Event listener to open gallery will be applied to <img> element
openOn: 'click',
// Show thumbnails for all groups with more than 1 image
thumbnails: false,
}
app.use(VueImg, vueImgConfig);
app.mount('#app')