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.
reagent_manage/vue/src/views/example/components/signatureExample.vue

29 lines
633 B

<template>
<div>
<div class="tip-row">
搞了个手写签名竖屏横屏不可兼得
</div>
<div>
<img :src="src" style="width: 100%;height: 500px;object-fit: contain">
</div>
<el-button plain @click="signature">点击签名</el-button>
</div>
</template>
<script>
export default {
name: 'signatureExample',
data() {
return {
src: null
}
},
methods: {
signature() {
this.$signature({
image: this.src, onConfirm: img => this.src = img
})
}
}
}
</script>