@vtj/coder
Version:
VVTJ.PRO 是一个开源的、AI 驱动的 Vue3 企业级应用开发平台,通过 AI 智能体与可视化编排实现高效开发,并支持导出标准 Vue 代码以避免平台锁定。
17 lines (16 loc) • 610 B
TypeScript
import { NodeSchema, MaterialDescription, JSFunction } from '@vtj/core';
export declare const NO_END_TAGS: string[];
/**
* 内置指令
*/
export declare const BUILT_IN_DIRECTIVES: string[];
export declare function parseTemplate(children: NodeSchema[], componentMap: Map<string, MaterialDescription>, computedKeys?: string[], context?: Record<string, Set<string>>, parent?: NodeSchema, easycomPackages?: Set<string>): {
nodes: string[];
methods: Record<string, JSFunction>;
directives: string[];
components: string[];
importBlocks: {
id: string;
name: string;
}[];
};