TStatusDot / 状态点
StatusDot renders a small colored dot for indicating status. Supports pulse animation and color variants. / 状态点渲染一个彩色圆点指示状态,支持脉搏动画和颜色变体。
Props / 属性
| Prop | Type / 类型 | Default / 默认值 | Description / 说明 |
|---|---|---|---|
color | BaseColor | 'blue' | Dot color |
animated | boolean | true | Pulse animation |
Basic Usage / 基础用法
vue
<template>
<TStatusDot color="success" />
<TStatusDot color="danger" />
<TStatusDot color="warning" :animated="false" />
</template>