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 }
-
-

Tree-shakeable by design

-

+

+

Tree-shakeable by design

+

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.

-
-

SSR-safe out of the box

-

+

+

SSR-safe out of the box

+

Browser-only access is guarded behind lifecycle hooks and configurable window/document targets, so Nuxt and SSR setups just work.

-
-

Fully typed

-

+

+

Fully typed

+

Written in TypeScript with precise return types and generics. MaybeRefOrGetter arguments mean you can pass plain values, refs or getters interchangeably.

-
-

Broad coverage

-

+

+

Broad coverage

+

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:

-
+
- {{ count }} + {{ count }}