added vue router

This commit is contained in:
Kostya
2023-11-12 21:53:54 +03:00
parent 30c2dae674
commit 7b7cbbfafe
345 changed files with 316132 additions and 0 deletions

11
node_modules/vue/dist/vue.d.ts generated vendored Normal file
View File

@@ -0,0 +1,11 @@
import { CompilerOptions } from '@vue/compiler-dom';
import { RenderFunction } from '@vue/runtime-dom';
export * from '@vue/runtime-dom';
export declare function compileToFunction(template: string | HTMLElement, options?: CompilerOptions): RenderFunction;
export { compileToFunction as compile };
// this is appended to the end of ../dist/vue.d.ts during build.
// imports the global JSX namespace registration for compat.
// TODO: remove in 3.4
import '../jsx'