Skip to content

Commit

Permalink
chore: update index
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Sep 6, 2021
1 parent ab7fe5f commit c0a2891
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -7,7 +7,7 @@ Collection of essential Vue Composition Utilities
<a href="https://www.npmjs.com/package/@vueuse/core" target="__blank"><img src="https://img.shields.io/npm/v/@vueuse/core?color=a1b858&label=" alt="NPM version"></a>
<a href="https://www.npmjs.com/package/@vueuse/core" target="__blank"><img alt="NPM Downloads" src="https://img.shields.io/npm/dm/@vueuse/core?color=50a36f&label="></a>
<a href="https://vueuse.org" target="__blank"><img src="https://img.shields.io/static/v1?label=&message=docs%20%26%20demos&color=1e8a7a" alt="Docs & Demos"></a>
<img alt="Function Count" src="https://img.shields.io/badge/-139%20functions-13708a">
<img alt="Function Count" src="https://img.shields.io/badge/-140%20functions-13708a">
<br>
<a href="https://github.com/vueuse/vueuse" target="__blank"><img alt="GitHub stars" src="https://img.shields.io/github/stars/vueuse/vueuse?style=social"></a>
</p>
Expand Down
7 changes: 7 additions & 0 deletions indexes.json
Expand Up @@ -182,6 +182,13 @@
"category": "Watch",
"description": "debounced watch"
},
{
"name": "eagerComputed",
"package": "shared",
"docs": "https://vueuse.org/shared/eagerComputed/",
"category": "Utilities",
"description": "eager computed without lazy evaluation"
},
{
"name": "extendRef",
"package": "shared",
Expand Down
1 change: 1 addition & 0 deletions packages/functions.md
Expand Up @@ -110,6 +110,7 @@
- [`controlledComputed`](https://vueuse.org/shared/controlledComputed/) — explicitly define the deps of computed
- [`controlledRef`](https://vueuse.org/shared/controlledRef/) — fine-grained controls over ref and its reactivity
- [`createEventHook`](https://vueuse.org/shared/createEventHook/) — utility for creating event hooks
- [`eagerComputed`](https://vueuse.org/shared/eagerComputed/) — eager computed without lazy evaluation
- [`extendRef`](https://vueuse.org/shared/extendRef/) — add extra attributes to Ref
- [`get`](https://vueuse.org/shared/get/) — shorthand for accessing `ref.value`
- [`makeDestructurable`](https://vueuse.org/shared/makeDestructurable/) — make isomorphic destructurable for object and array at the same time
Expand Down
1 change: 1 addition & 0 deletions packages/shared/index.ts
Expand Up @@ -6,6 +6,7 @@ export * from './createEventHook'
export * from './createGlobalState'
export * from './createSharedComposable'
export * from './debouncedWatch'
export * from './eagerComputed'
export * from './extendRef'
export * from './get'
export * from './ignorableWatch'
Expand Down

0 comments on commit c0a2891

Please sign in to comment.