文件操作 - state.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/nuxt/dist/app/composables/state.d.ts
编辑文件内容
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;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件