| 12345678910111213141516171819202122232425262728 |
- import { ElementUIComponent, ElementUIComponentSize } from './component'
- export type TagType = 'primary' | 'gray' | 'success' | 'warning' | 'danger'
- export type TagTheme = 'dark' | 'light' | 'plain'
- /** Tag Component */
- export declare class ElTag extends ElementUIComponent {
- /** Tag type */
- type: TagType
- /** Whether Tab can be removed */
- closable: boolean
- /** Whether the removal animation is disabled */
- disableTransitions: boolean
- /** Whether Tag has a highlighted border */
- hit: boolean
- /** Background color of the tag */
- color: string
- /** Tag size */
- size: ElementUIComponentSize
- /** Tag theme */
- effect: TagTheme
- }
|