1.2.0 • Published 6 years ago

vue-hand-written v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

vue-hand-written

基于 Vue 2.x 的手写组件

安装

npm i vue-hand-written --save

使用

<template>
  <div>
    <handwritten :width='400' :height="250" @getimageu8="getu8" @getimage="get"></handwritten>
  </div>
</template>

<script>
  import handwritten from 'vue-hand-written'

  export default {
      components: { 
        handwritten
      },
      methods:{
        getu8 (img) {
          console.log(img)
        },
        get (img) {
          console.log(img)
        }
      }
  }
</script>

width(number): 画板宽度,默认400

height(number):画板宽度,默认250

1.2.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago