UNPKG

@squirrel-cloud/ui-vue

Version:

松鼠的坚果屋前端VUE框架

22 lines (18 loc) 300 B
import type { Component } from 'vue' /** * Markdown 节点元素 */ export declare interface MdNodeItem { /** * 节点标签 */ tag?: string | Component /** * 节点属性 */ attrs?: Record<string, string> /** * 节点子集 */ children?: (MdNodeItem | string)[] }