ivue-material-plus
Version:
A high quality UI components Library with Vue.js
44 lines (43 loc) • 1.04 kB
TypeScript
import Node from './store/node';
declare const _sfc_main: import("vue").DefineComponent<{
/**
* tree 节点对象
*
* @type {Node}
*/
node: {
type: typeof Node;
required: true;
default: () => {};
};
/**
* 树节点的内容区的渲染方法
*
* @type {Function}
*/
renderContent: {
type: FunctionConstructor;
};
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* tree 节点对象
*
* @type {Node}
*/
node: {
type: typeof Node;
required: true;
default: () => {};
};
/**
* 树节点的内容区的渲染方法
*
* @type {Function}
*/
renderContent: {
type: FunctionConstructor;
};
}>>, {
node: Node;
}>;
export default _sfc_main;