mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-29 05:38:57 +08:00
22 lines
400 B
Markdown
22 lines
400 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Wb-button v-zoom="zoomOption" type="primary">点击查看图片</Wb-button>
|
|
</template>
|
|
<script>
|
|
import png from "../../images/framework.jpg"
|
|
export default {
|
|
data(){
|
|
return {
|
|
zoomOption: {
|
|
src: png,
|
|
minWidth: 200,
|
|
maxWidth: 500
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
``` |