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>
36 lines
742 B
Markdown
36 lines
742 B
Markdown
---
|
|
category: State
|
|
---
|
|
|
|
# injectLocal
|
|
|
|
Extended `inject` with ability to call `provideLocal` to provide the value in the same component.
|
|
|
|
## Usage
|
|
|
|
```vue
|
|
<script setup>
|
|
import { injectLocal, provideLocal } from '@vueuse/core'
|
|
|
|
provideLocal('MyInjectionKey', 1)
|
|
const injectedValue = injectLocal('MyInjectionKey') // injectedValue === 1
|
|
</script>
|
|
```
|
|
|
|
## Type Declarations
|
|
|
|
```ts
|
|
/**
|
|
* On the basis of `inject`, it is allowed to directly call inject to obtain the value after call provide in the same component.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* injectLocal('MyInjectionKey', 1)
|
|
* const injectedValue = injectLocal('MyInjectionKey') // injectedValue === 1
|
|
* ```
|
|
*
|
|
* @__NO_SIDE_EFFECTS__
|
|
*/
|
|
export declare const injectLocal: typeof inject
|
|
```
|