JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9
  • Score
    100M100P100Q48892F
  • License MIT

A Vue.js project for viewing image

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

NPM version Build Status

A Vue.js project for viewing image Depend on Spin of iview

install

npm install image-viewer-vue --save

Usage

1、 import in main.js

import imageViewer from 'image-viewer-vue'
Vue.use(imageViewer)

2、 how to use

<template>
  <div>
    <button @click="imageViewerFlag = true">点击查看图片</button>
    <image-viewer-vue 
        v-if="imageViewerFlag" 
        @closeImageViewer="imageViewerFlag = false" 
        @clickImage="clickImage"
        :imgUrlList="imgUrlList"
        :index="currentIndex"
        :title="title"
        :closable=true
        :cyclical=false>
    </image-viewer-vue>
  </div>
</template>
<script>
    export default {
        data() {
            return {
                imageViewerFlag: false,
                currentIndex: 1,
                title: '图片',
                imgUrlList: ['url1','url2','url3']
            }
        },
        methods:{
            clickImage: function(index){
                console.log(index)
            }
        }
    }
</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 image's title 图片
alt String false the property of img tag 图片
closable Boolean false the imageViewer will close when clicked blank true
cyclical Boolean false browse pictures can be repeated true

Methods

Name Description Params
closeImageViewer the callback for closing imageViewer null
clickImage the callback for clicking the image the index for the image which clicked
imageLoadSuccess the callback for loading success the index for the image which loaded success
imageLoadError the callback for loading error the index for the image which loaded error