Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
11
Frontend-Learner/node_modules/nuxt/dist/app/composables/state.d.ts
generated
vendored
Normal file
11
Frontend-Learner/node_modules/nuxt/dist/app/composables/state.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import type { Ref } from 'vue';
|
||||
/**
|
||||
* Create a global reactive ref that will be hydrated but not shared across ssr requests
|
||||
* @since 3.0.0
|
||||
* @param key a unique key ensuring that data fetching can be properly de-duplicated across requests
|
||||
* @param init a function that provides initial value for the state when it's not initiated
|
||||
*/
|
||||
export declare function useState<T>(key?: string, init?: (() => T | Ref<T>)): Ref<T>;
|
||||
export declare function useState<T>(init?: (() => T | Ref<T>)): Ref<T>;
|
||||
/** @since 3.6.0 */
|
||||
export declare function clearNuxtState(keys?: string | string[] | ((key: string) => boolean)): void;
|
||||
Loading…
Add table
Add a link
Reference in a new issue