Primeira Versão do Sistema de componentes Vue

This commit is contained in:
Luiz Silva 2025-12-08 13:59:04 -03:00
commit 35f9d57ce7
22 changed files with 1605 additions and 0 deletions

View file

@ -0,0 +1,3 @@
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;

View file

@ -0,0 +1,3 @@
import EliOlaMundo from './EliOlaMundo.vue';
export { EliOlaMundo };
export default EliOlaMundo;

7
dist/types/index.d.ts vendored Normal file
View file

@ -0,0 +1,7 @@
import type { App } from "vue";
import { EliOlaMundo } from './componentes/EliOlaMundo';
export { EliOlaMundo };
declare const _default: {
install(app: App): void;
};
export default _default;