vue-preview使用
Posted huanhuan55
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-preview使用相关的知识,希望对你有一定的参考价值。
1.安装 npm i vue-preview -S
2.如果使用vue-cli生成的项目,需要修改webpack.base.conf.js文件中的loaders,添加一个loader
{
test:/vue-preview.src.*?js$/,
loader:‘babel‘
}
3.导入:import VuePreview from ‘vue-preview‘
使用: Vue.use(VuePreview)
<div class="thumbs">
<img class="preview-img" v-for="(item, index) in list" :src="item.src" height="100" @click="$preview.open(index, list)" :key="item.src">
</div>
注意:img标签上的class="preview-img" 不能去掉,图片要设置宽和高
以上是关于vue-preview使用的主要内容,如果未能解决你的问题,请参考以下文章
使用vue-preview报错Cannot read property 'open' of undefined