SourceTermAnalysisSystem_vue/node_modules/@antv/x6/es/graph/base.js
2026-05-15 10:22:44 +08:00

19 lines
404 B
JavaScript

import { Disposable } from '@antv/x6-common';
export class Base extends Disposable {
get options() {
return this.graph.options;
}
get model() {
return this.graph.model;
}
get view() {
return this.graph.view;
}
constructor(graph) {
super();
this.graph = graph;
this.init();
}
init() { }
}
//# sourceMappingURL=base.js.map