UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

8 lines (7 loc) 286 B
export * from "vue"; //#region src/app/compat/capi.d.ts declare const install: () => void; declare function set<T>(target: any, key: string | number | symbol, val: T): T; declare function del(target: any, key: string | number | symbol): void; //#endregion export { del, install, set };