UNPKG

vue-diagram-editor-improved

Version:

Highly customizable diagram editor support for Vue.js

10 lines (8 loc) 164 B
export default class Coordinates { x = null; y = null; constructor({x = 10, y = 10}) { this.x = Number(x); this.y = Number(y); } }