dd
This commit is contained in:
23
extensions/Excel转JSON/main.js
Normal file
23
extensions/Excel转JSON/main.js
Normal file
@@ -0,0 +1,23 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
load () {
|
||||
// execute when package loaded
|
||||
},
|
||||
|
||||
unload () {
|
||||
// execute when package unloaded
|
||||
},
|
||||
|
||||
// register your ipc messages here
|
||||
messages: {
|
||||
'open' () {
|
||||
// open entry panel registered in package.json
|
||||
console.log('excel_to_json')
|
||||
Editor.Panel.open('excel_to_json');
|
||||
},
|
||||
'clicked' () {
|
||||
Editor.log('Button clicked!');
|
||||
}
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user