mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
基本信息控件。
This commit is contained in:
parent
71fe3fa98b
commit
bb2998f500
18
ShadowEditor.Web/src/component/BasicComponent.js
Normal file
18
ShadowEditor.Web/src/component/BasicComponent.js
Normal file
@ -0,0 +1,18 @@
|
||||
import BaseComponent from './BaseComponent';
|
||||
|
||||
/**
|
||||
* 基本信息组件
|
||||
* @param {*} options
|
||||
*/
|
||||
function BasicComponent(options) {
|
||||
BaseComponent.call(this, options);
|
||||
}
|
||||
|
||||
BasicComponent.prototype = Object.create(BaseComponent.prototype);
|
||||
BasicComponent.prototype.constructor = BasicComponent;
|
||||
|
||||
BasicComponent.prototype.render = function () {
|
||||
|
||||
};
|
||||
|
||||
export default BasicComponent;
|
||||
Loading…
x
Reference in New Issue
Block a user