0.0.2 • Published 3 years ago
instagallery v0.0.2
📸 InstaGallery
InstaGallery is a simple, fast and easy Vue 3 Component to use image gallery inspired by Instagram.
With Core features of lightGallery
Installation
npm install instagallery
Usage
<script setup>
import InstaGallery from "instagallery";
</script>
<template>
<InstaGallery>
<a href="img/img1.jpg">
<img alt=".." src="img/thumb1.jpg" />
</a>
<a href="img/img2.jpg">
<img alt=".." src="img/thumb2.jpg" />
</a>
</InstaGallery>
</template>