Skip to content

TStatusDot / 状态点

StatusDot renders a small colored dot for indicating status. Supports pulse animation and color variants. / 状态点渲染一个彩色圆点指示状态,支持脉搏动画和颜色变体。

Props / 属性

PropType / 类型Default / 默认值Description / 说明
colorBaseColor'blue'Dot color
animatedbooleantruePulse animation

Basic Usage / 基础用法

vue
<template>
  <TStatusDot color="success" />
  <TStatusDot color="danger" />
  <TStatusDot color="warning" :animated="false" />
</template>