2020-08-27 17:18:57 +08:00

18 lines
394 B
Markdown

```html
<template>
<Wb-button v-zoom :zoom-option="zoomOption" type="primary">点击查看图片</Wb-button>
</template>
<script>
export default {
data: function () {
return {
zoomOption: {
src: "images/girl.jpg",
minWidth: 200,
maxWidth: 500
}
}
}
}
</script>
```