UNPKG

@ray-js/smart-ui

Version:

轻量、可靠的智能小程序 UI 组件库

12 lines (11 loc) 261 B
export interface ComponentBase { /** * 标识符 */ id?: string; /** * css 类名 */ className?: string; } export type SmartComponent<Props = {}, Events = {}, EC = {}, Slot = {}> = ComponentBase & Props & Events & EC & Slot;