vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
352 B
8 lines
352 B
import type { FunctionalComponent } from 'vue'; |
|
import type { ButtonProps } from '../button'; |
|
import Button from '../button'; |
|
|
|
const PickerButton: FunctionalComponent<ButtonProps> = (props: ButtonProps, { attrs, slots }) => { |
|
return <Button size="small" type="primary" {...props} {...attrs} v-slots={slots}></Button>; |
|
}; |
|
export default PickerButton;
|
|
|