تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:٢
forks:٠
updated:٢١ مايو ٢٠٢٦ في ٠١:٢٢
SKILL.md
使用 uzoncalc 以编写 python 代码的方式创建工程计算书,实现公式自动计算、自动排版、自动渲染 HTML 文档等功能
popup dialog for creating or modifying items
translate frontend i18n from source language to target language
| name | context-menu |
| description | right-click context menu for table rows |
该技能为表格行提供右键菜单功能,允许用户在表格行上点击右键以访问特定于该行的操作选项。
import ContextMenu from 'src/components/contextMenu/ContextMenu.vue' 导入 ContextMenu 组件。<template v-slot:body-cell-index="props">
<QTableIndex :props="props" />
<ContextMenu :items="itemContextMenuItems" :value="props.row"></ContextMenu>
</template>
itemContextMenuItems,这是一个包含菜单项的数组,其值应为 ComputedRef<IContextMenuItem[]>:const itemContextMenuItems: ComputedRef<IContextMenuItem[]> = computed(() => [
{
name: 'modify',
label: tGlobal('modify'),
tooltip: t('categoryList.modifyCategory'),
onClick: onModifyCategory
}
])
useContextMenu.ts,以便在多个组件中重用。