rt-graphic-component/components/packages/Section/GPSection.js
joylink_zhaoerwei 3c81ca8a83 重新打包
2024-01-11 13:38:16 +08:00

17 lines
349 B
JavaScript

import { JlSection } from './common/Section.js';
export { SectionTemplate } from './common/Section.js';
const displayConfig = {
lineColor: '#5578b6',
occupiedColor: '#f00',
lineWidth: 5,
};
class Section extends JlSection {
constructor() {
super();
this.setDisplayConfig(displayConfig);
}
}
export { Section };