-
Notifications
You must be signed in to change notification settings - Fork 1
eventhub
kennana edited this page Jul 14, 2023
·
1 revision
<script setup lang="ts">
import { useEventHub } from 'toolkit-use/dist/event-hub/index.esm'
const events = useEventHub()
// 监听事件
events.on('focus', () => console.log('专注'))
events.emit('focus', '专注')
events.off('focus', () => console.log('专注'))
</script>