You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
278 B
18 lines
278 B
|
6 years ago
|
# 图片预览
|
||
|
|
|
||
|
|
### 使用:
|
||
|
|
|
||
|
|
```js
|
||
|
|
//开始预览
|
||
|
|
this.$image({index, urlList})
|
||
|
|
|
||
|
|
//退出预览
|
||
|
|
this.$image.close()
|
||
|
|
```
|
||
|
|
|
||
|
|
### $image({index, urlList})
|
||
|
|
|
||
|
|
- `index` : `number`,当前图片在图片数组中的下标。
|
||
|
|
|
||
|
|
- `urlList` : `array`,需要预览的图片的url数组
|