mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-12-15 23:54:35 +08:00
22 lines
418 B
JavaScript
22 lines
418 B
JavaScript
export const otherCommands = {
|
|
label: "其他功能",
|
|
icon: "more_horiz",
|
|
defaultOpened: false,
|
|
commands: [
|
|
{
|
|
value: "quickcommand.sleep",
|
|
label: "添加延时",
|
|
config: [
|
|
{
|
|
label: "延迟的毫秒数",
|
|
component: "NumberInput",
|
|
min: 0,
|
|
step: 100,
|
|
icon: "schedule",
|
|
defaultValue: 500,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|