import { defineComponent, PropType } from 'vue' import './button.less' export default defineComponent({ name: 'BButton', props: { color: { type: String }, onClick: { type: Function as PropType<(e: Event) => void> } }, setup(props, { slots }) { const handleClick = (e: Event) => props.onClick?.(e) return () => { const { color } = props return <> } } })