Pulled ALL skills from 15 source repositories: - anthropics/skills: 16 (docs, design, MCP, testing) - obra/superpowers: 14 (TDD, debugging, agents, planning) - coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth) - better-auth/skills: 5 (auth patterns) - vercel-labs/agent-skills: 5 (React, design, Vercel) - antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo) - Plus 13 individual skills from various repos Mosaic Stack is not limited to coding — the Orchestrator and subagents serve coding, business, design, marketing, writing, logistics, analysis, and more. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
1.2 KiB
Markdown
55 lines
1.2 KiB
Markdown
---
|
|
category: Reactivity
|
|
---
|
|
|
|
# createRef
|
|
|
|
Returns a `deepRef` or `shallowRef` depending on the `deep` param.
|
|
|
|
## Usage
|
|
|
|
```ts
|
|
import { createRef } from '@vueuse/core'
|
|
import { isShallow, ref } from 'vue'
|
|
|
|
const initialData = 1
|
|
|
|
const shallowData = createRef(initialData)
|
|
const deepData = createRef(initialData, true)
|
|
|
|
isShallow(shallowData) // true
|
|
isShallow(deepData) // false
|
|
```
|
|
|
|
## Type Declarations
|
|
|
|
```ts
|
|
export type CreateRefReturn<
|
|
T = any,
|
|
D extends boolean = false,
|
|
> = ShallowOrDeepRef<T, D>
|
|
export type ShallowOrDeepRef<
|
|
T = any,
|
|
D extends boolean = false,
|
|
> = D extends true ? Ref<T> : ShallowRef<T>
|
|
/**
|
|
* Returns a `deepRef` or `shallowRef` depending on the `deep` param.
|
|
*
|
|
* @example createRef(1) // ShallowRef<number>
|
|
* @example createRef(1, false) // ShallowRef<number>
|
|
* @example createRef(1, true) // Ref<number>
|
|
* @example createRef("string") // ShallowRef<string>
|
|
* @example createRef<"A"|"B">("A", true) // Ref<"A"|"B">
|
|
*
|
|
* @param value
|
|
* @param deep
|
|
* @returns the `deepRef` or `shallowRef`
|
|
*
|
|
* @__NO_SIDE_EFFECTS__
|
|
*/
|
|
export declare function createRef<T = any, D extends boolean = false>(
|
|
value: T,
|
|
deep?: D,
|
|
): CreateRefReturn<T, D>
|
|
```
|