diff --git a/vue/toolkit/docs/intro.vue b/vue/toolkit/docs/intro.vue index b66005b..1bf45ae 100644 --- a/vue/toolkit/docs/intro.vue +++ b/vue/toolkit/docs/intro.vue @@ -29,33 +29,33 @@ const { count, increment, decrement, reset } = useCounter(0, { min: 0, max: 10 }
+
Import only what you use. Each composable lives on its own and pulls in nothing it doesn't need — your bundle stays exactly as small as your usage.
+
Browser-only access is guarded behind lifecycle hooks and configurable
window/document targets, so Nuxt and SSR setups just work.
+
Written in TypeScript with precise return types and generics. MaybeRefOrGetter
arguments mean you can pass plain values, refs or getters interchangeably.
+
From state and reactivity to sensors, elements, storage, math and form handling — one cohesive toolkit spanning the whole surface of a Vue app.
@@ -101,19 +101,19 @@ useEventListener('keydown', (e) => {The same useCounter running live: