mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-25 17:09:20 +08:00
18 lines
394 B
Markdown
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>
|
|
``` |