nutui-uniapp
Version:
京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)
23 lines (20 loc) • 491 B
text/typescript
import type { ExtractPropTypes } from 'vue'
import { commonProps } from '../_utils'
import { badgeProps } from '../badge'
export const tabbaritemProps = {
...commonProps,
...badgeProps,
/**
* @description 标签名称,作为匹配的标识符
*/
name: String,
/**
* @description 标签页显示的图标
*/
icon: String,
/**
* @description 标签页的标题
*/
tabTitle: String,
}
export type TabBarItemProps = ExtractPropTypes<typeof tabbaritemProps>