1.2.0 • Published 7 years ago

vue-hand-written v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 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

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago