docs: add advanced skills for Vitest, Pinia, and Vue built-ins
Add comprehensive reference documentation for: - Vitest: environments, projects/workspaces, type testing, vi utilities - Pinia: HMR, Nuxt integration, SSR setup - Vue: built-in components (Transition, Teleport, Suspense, KeepAlive) and advanced directives
This commit is contained in:
36
.agents/skills/vueuse-functions/references/useMin.md
Normal file
36
.agents/skills/vueuse-functions/references/useMin.md
Normal file
@@ -0,0 +1,36 @@
|
||||
---
|
||||
category: '@Math'
|
||||
---
|
||||
|
||||
# useMin
|
||||
|
||||
Reactive `Math.min`.
|
||||
|
||||
## Usage
|
||||
|
||||
```ts
|
||||
import { useMin } from '@vueuse/math'
|
||||
|
||||
const array = ref([1, 2, 3, 4])
|
||||
const min = useMin(array) // Ref<1>
|
||||
```
|
||||
|
||||
```ts
|
||||
import { useMin } from '@vueuse/math'
|
||||
|
||||
const a = ref(1)
|
||||
const b = ref(3)
|
||||
|
||||
const min = useMin(a, b, 2) // Ref<1>
|
||||
```
|
||||
|
||||
## Type Declarations
|
||||
|
||||
```ts
|
||||
export declare function useMin(
|
||||
array: MaybeRefOrGetter<MaybeRefOrGetter<number>[]>,
|
||||
): ComputedRef<number>
|
||||
export declare function useMin(
|
||||
...args: MaybeRefOrGetter<number>[]
|
||||
): ComputedRef<number>
|
||||
```
|
||||
Reference in New Issue
Block a user