mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
400 B
400 B
layout |
---|
templateLayout |
<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>