mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-14 17:01:19 +08:00
7 lines
209 B
Vue
7 lines
209 B
Vue
|
import type { TagProps } from '../tag';
|
||
|
import Tag from '../tag';
|
||
|
|
||
|
export default function PickerTag(props: TagProps, { slots, attrs }) {
|
||
|
return <Tag color="blue" {...props} {...attrs} v-slots={slots} />;
|
||
|
}
|