nutui-uniapp
Version:
京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)
54 lines (49 loc) • 1.23 kB
text/typescript
import type { ExtractPropTypes } from 'vue'
import { CLICK_EVENT, CLOSE_EVENT } from '../_constants'
import { commonProps, makeNumericProp, makeStringProp } from '../_utils'
import type { TagType } from './type'
export const tagProps = {
...commonProps,
/**
* @description 标签颜色
*/
customColor: String,
/**
* @description 文本颜色,优先级高于 color 属性
*/
textColor: String,
/**
* @description 标签类型,可选值为 primary、success、danger、warning
*/
type: makeStringProp<TagType>('default'),
/**
* @description 是否为空心样式
*/
plain: Boolean,
/**
* @description 是否为圆角样式
*/
round: Boolean,
/**
* @description 是否为标记样式
*/
mark: Boolean,
/**
* @description 是否为可关闭标签
*/
closeable: Boolean,
/**
* @description 关闭图标大小
*/
closeIconSize: makeNumericProp(11),
/**
* @description 是否禁用
*/
disabled: Boolean,
}
export type TagProps = ExtractPropTypes<typeof tagProps>
export const tagEmits = {
[CLICK_EVENT]: (evt: any) => evt instanceof Object,
[CLOSE_EVENT]: (evt: any) => evt instanceof Object,
}
export type TagEmits = typeof tagEmits