update to v0.1.12

This commit is contained in:
frostime 2023-08-15 10:38:13 +08:00
parent 014f906263
commit 4fc8ef7afc
4 changed files with 24 additions and 3 deletions

View file

@ -524,6 +524,18 @@ export default class PluginSample extends Plugin {
click: () => {
this.eventBus.off("open-menu-breadcrumbmore", this.eventBusLog);
}
}, {
icon: "iconSelect",
label: "On input-search",
click: () => {
this.eventBus.on("input-search", this.eventBusLog);
}
}, {
icon: "iconClose",
label: "Off input-search",
click: () => {
this.eventBus.off("input-search", this.eventBusLog);
}
}]
});
menu.addSeparator();