UNPKG

vuux

Version:

Vue3 Nuxt3 Nuxt4 组件库

17 lines (16 loc) 252 B
/** * Props */ export interface Props { content?: string; keyWords?: string[]; ignoreCase?: boolean; color?: string; } /** * 高亮关键字类型 */ export interface RenderText { isKey: boolean; text: string | undefined; }