在线签名

代码实现
<template>
<h3>在线签名</h3>
<div ref="mainboard" class="container">
<div class="mianboard" :style="{
width: data.size.width + 'px',
height: data.size.height + 'px'
}">
<canvas id="main" :width="data.size.width" :height="data.size.height"></canvas>
<div ref="floatboard" v-show="show" class="floatboard" :style="{
left: left + 'px',
top: top + 'px'
}" @mousedown="floatMouseDown">
<canvas id="float" width="200" height="80"></canvas>
</div>
<div class="sab">
<button @click="save">保存</button>
<button @click="backInit">清除</button>