Description: VueUse is a collection of useful utility functions that help with state management, browser APIs, and performance optimizations.
Installation:
npm install @vueuse/core
Example: Dark Mode Toggle
import { useDark } from '@vueuse/core'
const isDark = useDark()
<template>
<button @click="isDark = !isDark">Toggle Dark Mode</button>
</template>