Package Exports
- image-viewer-vue
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (image-viewer-vue) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
image-viewer-vue
A Vue.js project for viewing image
install
npm install image-viewer-vue --saveUsage
- import in main.js
import imageViewer from 'image-viewer-vue'
Vue.use(imageViewer)- how to use in template
<template>
<div>
<button @click="imageViewerFlag = true">点击查看图片</button>
<image-viewer-vue
v-if="imageViewerFlag"
@closeImageViewer="imageViewerFlag = false"
:imgUrlList="imgUrlList"
:index="currentIndex"
:title="title">
</image-viewer-vue>
</div>
</template>
<script>
export default {
data() {
return {
imageViewerFlag: false,
currentIndex: 1,
title: '图片',
imgUrlList: ['url1','url2','url3']
}
}
}
</script>Props
| Name | Type | Required | Description | Default |
|---|---|---|---|---|
| imgUrlList | Array | true | image url list | [] |
| index | Number | false | Which image to show first | '0' |
| title | String | false | the image title | '图片' |
Methods
| Name | Description |
|---|---|
| closeImageViewer | the callback for closing imageViewer |