在vue-cli中实现签名板

先安装组件

cnpm i --save elesigncode

在组件中使用的详细流程

<template>
  <div>
      <div>
        在vue-cli中使用elesigncode
      </div>
      <div class="hello" >
        <ElesignCode ref="signCode1" :datas="datas" :pen="pen"/>  
      </div>
      <div>
        <button @click="changePen">切换笔</button>
        <button @click="getData">获取数据</button>
        <button @click="log($refs.signCode1.toPng())">获取png图片</button>
        <button @click="log($refs.signCode1.toJpeg())">获取jpeg图片</button>
      </div>
  </div>
 
</template>

<script>
var data = {"data":[{"points":[{"x":118,"y":74}],"color":"#333333","lineWidth":4},{"points":[{"x":157,"y":134},{"x":158,"y":134},{"x":162,"y":134},{"x":169,"y":134},{"x":179,"y":134},{"x":193,"y":134},{"x":206,"y":134},{"x":220,"y":134},{"x":237,"y":134},{"x":251,"y":133},{"x":265,"y":132},{"x":277,"y":132},{"x":287,"y":132},{"x":297,"y":131},{"x":300,"y":131}],"color":"#333333","lineWidth":4},{"points":[{"x":147,"y":182},{"x":154,"y":182},{"x":172,"y":182},{"x":187,"y":182},{"x":203,"y":182},{"x":220,"y":182},{"x":241,"y":182},{"x":258,"y":182},{"x":274,"y":182},{"x":288,"y":182},{"x":298,"y":181},{"x":305,"y":180},{"x":308,"y":179},{"x":310,"y":179},{"x":310,"y":178}],"color":"#333333","lineWidth":4},{"points":[{"x":186,"y":205},{"x":184,"y":206},{"x":183,"y":208},{"x":182,"y":210},{"x":181,"y":212},{"x":180,"y":213},{"x":179,"y":215},{"x":177,"y":217},{"x":175,"y":220},{"x":172,"y":224},{"x":167,"y":228},{"x":162,"y":232},{"x":155,"y":238},{"x":146,"y":242},{"x":137,"y":247}],"color":"#333333","lineWidth":4},{"points":[{"x":240,"y":190},{"x":243,"y":194},{"x":245,"y":198},{"x":249,"y":203},{"x":254,"y":207},{"x":260,"y":213},{"x":266,"y":217},{"x":272,"y":221},{"x":281,"y":226},{"x":289,"y":230},{"x":298,"y":234},{"x":307,"y":238},{"x":317,"y":241},{"x":327,"y":244},{"x":336,"y":247},{"x":345,"y":250},{"x":353,"y":253}],"color":"#333333","lineWidth":4}],"color":"#333","lineWidth":4,"bgColor":"-1","pen":"default","writingMaxLine":20,"writingMinLine":10}
// 导入我们内置的vue组件
import ElesignCode from  "elesigncode/lib/core/elesigncode"
export default {
  name: 'HelloWorld',
  // 注册我们的组件
  components:{
    ElesignCode
  },
  data () {
    return {
      pen:"writing",
      datas:data
    }
  },
  methods:{
    changePen(){
      if(this.pen !== "writing"){
        this.pen = "writing"
      }else{
        this.pen = "default"
      }
    },
    log(msg){
      return console.log(msg)
    },
    getData(){
      console.log(this.$refs.signCode1.getJson())
      return this.$refs.signCode1.getJson()
    },
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.hello{
  width: 95%;
  margin-left:2.5%;
  margin-right:2.5%;
  margin-top:10px;
  margin-bottom:10px;
  height: 300px;
  border:1px solid #e6eaee;
}
</style>

这个插件的详细文档

https://github.com/yinhui1129754/elesigncode
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值