signature_pad.js 271 B

12345678910111213141516
  1. import SignaturePad from "signature_pad";
  2. export default {
  3. template: "<canvas></canvas>",
  4. props: {
  5. options: Array,
  6. },
  7. mounted() {
  8. this.pad = new SignaturePad(this.$el, this.options);
  9. },
  10. methods: {
  11. clear() {
  12. this.pad.clear();
  13. },
  14. },
  15. };