Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/naihe138/vue-imageview

A preview image component for Vue3
https://github.com/naihe138/vue-imageview

component images-preview js vue

Last synced: 22 days ago
JSON representation

A preview image component for Vue3

Awesome Lists containing this project

README

        

# vue preview image
A preview images component for Vue3


See The Demo

## 1、Usage with Vue3

`npm install vue-imageview --save`

## 2、Using as your need

````html
]

点击图片进行预览










import ImagesView from './components/index';
import { ref, onMounted } from 'vue'
const show = ref(false)
const srcArr = ref([])
const imgSrc = ref('');
const getData = (imgBox: HTMLDivElement) => {
const imgs = imgBox.querySelectorAll('img');
srcArr.value = Array.from(imgs).map((el) => el.src);
}

onMounted(() => {
const imgBox: HTMLDivElement = document.querySelector('#imgBox');
getData(imgBox);
imgBox.addEventListener('click', (e: any) => {
if(e.target.nodeName == 'IMG') {
imgSrc.value = e.target.src;
show.value = true
}
})
});

````

## Attributes

Attribute | Description | require | Type | Default
---- | --- | --- | --- | ---
visible | show/hide picker | yes | Boolean | false
images | images data for components [src1, src2] | yes | Array | []
src | show current images link | yes | String | ''