UNPKG

tnuiv3p-tn-suspend-button

Version:
15 lines (12 loc) 271 B
import type { SetupContext } from 'vue' import type { SuspendButtonEmits } from '../types' export const useSuspendButton = ( emits: SetupContext<SuspendButtonEmits>['emit'] ) => { const clickHandle = () => { emits('click') } return { clickHandle, } }