yozora-vue
Version:
Build beautiful, scalable UIs effortlessly with Yozora, a Vue 3 and Tailwind CSS component library focused on flexibility, responsiveness, and ease of customization. Perfect for developers seeking fast, maintainable, and utility-first design integration.
27 lines (26 loc) • 1.08 kB
TypeScript
/**
* Props for the TagInput component.
* @prop {string[]} modelValue - The model value of the tag input.
* @prop {number | string} limit - The limit of the tags. Default is -1.
* @prop {string} bgColor - The background color of the tags. Default is '#f66b0e'.
* @prop {string} textColor - The text color of the tags. Default is ''.
*/
interface TagInputProps {
modelValue?: string[];
limit?: number | string;
bgColor?: string;
textColor?: string;
}
declare const _default: import("vue").DefineComponent<TagInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<TagInputProps> & Readonly<{
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {
modelValue: string[];
limit: number | string;
bgColor: string;
textColor: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
tagsUl: HTMLUListElement;
}, HTMLDivElement>;
export default _default;