initial commit

This commit is contained in:
Zoe
2023-01-03 09:29:04 -06:00
commit 7851137d88
12889 changed files with 2557443 additions and 0 deletions

4
node_modules/nuxt/dist/app/compat/capi.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
export * from 'vue';
export declare const install: () => void;
export declare function set(target: any, key: string | number | symbol, val: any): any;
export declare function del(target: any, key: string | number | symbol): void;

19
node_modules/nuxt/dist/app/compat/capi.mjs generated vendored Normal file
View File

@@ -0,0 +1,19 @@
export * from "vue";
export const install = () => {
};
export function set(target, key, val) {
if (Array.isArray(target)) {
target.length = Math.max(target.length, key);
target.splice(key, 1, val);
return val;
}
target[key] = val;
return val;
}
export function del(target, key) {
if (Array.isArray(target)) {
target.splice(key, 1);
return;
}
delete target[key];
}

4
node_modules/nuxt/dist/app/compat/vue-demi.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
export * from './capi';
export declare const Vue2: undefined;
export declare const isVue2 = false;
export declare const isVue3 = true;

4
node_modules/nuxt/dist/app/compat/vue-demi.mjs generated vendored Normal file
View File

@@ -0,0 +1,4 @@
export * from "./capi.mjs";
export const Vue2 = void 0;
export const isVue2 = false;
export const isVue3 = true;