easyai-plugin-dev-kit/manifest/AllApps.ts
2025-08-30 14:56:20 +08:00

15 lines
695 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {ComponentSceneConst, type IComponentMateInfo} from "~/composables";
import {BuilderComponentGroupConst} from "~/composables/meta/interface/dynamicPage.interface";
export default {
name: "RemoteAllApps", // 组件名称 备注带上特殊标识不要和已有组件重名比如Remote+组件名
path: "./components/AllApps/index.vue", // 组件路径
scenes: ComponentSceneConst.DynamicPage, // 组件场景
description: "",
data: {
icon: "carbon:app", // 组件图标
label: "全部应用", // 组件标签
group: BuilderComponentGroupConst.HomeTemplate
}
} satisfies IComponentMateInfo<typeof ComponentSceneConst.DynamicPage>;