跳到内容

provideLocal

Category
导出大小
227 B
Last Changed
4 months ago

扩展了 provide,使其能够在同一组件中调用 injectLocal 来获取值。

Usage

vue
<script setup>
import { injectLocal, provideLocal } from '@vueuse/core'

provideLocal('MyInjectionKey', 1)
const injectedValue = injectLocal('MyInjectionKey') // injectedValue === 1
</script>

Type Declarations

typescript
/**
 * On the basis of `provide`, it is allowed to directly call inject to obtain the value after call provide in the same component.
 *
 * @example
 * ```ts
 * provideLocal('MyInjectionKey', 1)
 * const injectedValue = injectLocal('MyInjectionKey') // injectedValue === 1
 * ```
 */
export declare const provideLocal: typeof provide

Source

源码文档

Contributors

ZHAO Jin-Xiang
Anthony Fu

Changelog

v12.0.0-beta.1 on 11/21/2024
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (移除 Vue 2 支持,优化包并清理代码) (#4349)
v10.5.0 on 10/7/2023
cf757 - fix: vue 2 support for provideLocal and injectLocal (修复: 为 provideLocal 和 injectLocal 提供 Vue 2 支持) (#3464)
5d948 - feat(createInjectionState): allow provide and inject in same component (feat(createInjectionState): 允许在同一组件中 provide 和 inject) (#3387)

Released under the MIT License.