我是靠谱客的博主 阔达柠檬,最近开发中收集的这篇文章主要介绍Vue图片浏览组件v-viewer,支持旋转、缩放、翻转等操作,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

先看效果

 第一步:安装该插件

npm install v-viewer

第二步:在对应的组件内导入该插件 

import 'viewerjs/dist/viewer.css'
import VueViewer from 'v-viewer'
import Vue from 'vue'
Vue.use(VueViewer)

完整代码如下: 

<template>
    <div>
      <!-- directive -->
      <div class="images" v-viewer>
        <img v-for="src in images" :key="src" :src="src">
      </div>
      <!-- component -->
      <viewer :images="images">
        <img v-for="src in images" :key="src" :src="src">
      </viewer>
      <!-- api -->
      <button type="button" @click="show">Click to show</button>
    </div>
  </template>
  <script>
    import 'viewerjs/dist/viewer.css'
    import VueViewer from 'v-viewer'
    import Vue from 'vue'
    Vue.use(VueViewer)
    export default {
      data() {
        return {
          images: [
            "https://picsum.photos/200/200",
            "https://picsum.photos/300/200",
            "https://picsum.photos/250/200"
          ]
        };
      },
      methods: {
        show() {
          this.$viewerApi({
            images: this.images,
          })
        },
      },
    }
  </script>

到这就完成了该插件的基本使用

最后

以上就是阔达柠檬为你收集整理的Vue图片浏览组件v-viewer,支持旋转、缩放、翻转等操作的全部内容,希望文章能够帮你解决Vue图片浏览组件v-viewer,支持旋转、缩放、翻转等操作所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部