Vue Konva Versions Save

Vue & Canvas - JavaScript library for drawing complex canvas graphics using Vue.

v2.0.0

5 years ago

This version has many bugs fixes and internal changes.

Breaking: all event callbacks have Event object as the first argument. Previously they have component argument as the first argument and Event object as the second. That behavior is changed.

methods: {
  mousedown(e) {
    // use "this" to access component instance
    // e - is event object from Konva
  }
}