import type { SetupContext } from 'vue' import type { SuspendButtonEmits } from '../types' export const useSuspendButton = ( emits: SetupContext['emit'] ) => { const clickHandle = () => { emits('click') } return { clickHandle, } }