Skip to content

v2.0.0

Choose a tag to compare

@macoley macoley released this 11 May 11:01

What's Changed

Breaking changes

New API for event dispatching.

✖️ old one:

const dispatch = useEvent()
dispatch('onBobPress', 'hello')

✅ new one:

const { onBobPress } = useEvent()
onBobPress('hello')

Full Changelog: v1.1.0...v2.0.0