mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
12 lines
142 B
JavaScript
12 lines
142 B
JavaScript
/**
|
|
* 用户界面API
|
|
*/
|
|
function UIAPI() {
|
|
|
|
}
|
|
|
|
UIAPI.prototype.addMenu = function () {
|
|
alert('添加菜单');
|
|
};
|
|
|
|
export default UIAPI; |