end.js 285 B

12345678910111213141516
  1. import { CircleNode, CircleNodeModel } from '@logicflow/core'
  2. class endModel extends CircleNodeModel {
  3. initNodeData(data) {
  4. super.initNodeData(data)
  5. this.r = 20
  6. }
  7. }
  8. class endView extends CircleNode {}
  9. export default {
  10. type: 'end',
  11. model: endModel,
  12. view: endView
  13. }