UNPKG
choo-taro-ui-vue3
Version:
latest (1.1.1)
1.1.1
1.1.0
Taro UI Rewritten in Vue 3.0
b2nil.github.io/taro-ui-vue3
choo-taro-ui-vue3
/
types
/
badge.d.ts
20 lines
(17 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import
AtComponent
from
'./base'
export
interface
AtBadgeProps
extends
AtComponent
{
/** * 角标红点 *
@default
false
*/
dot
?:
boolean
/** * 角标内容 */
value
?:
string
|
number
/** * 角标最大值 *
@default
99 */
maxValue
?:
number
}