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

62
dist/eli-vue.es.js vendored Normal file
View file

@ -0,0 +1,62 @@
import { defineComponent as u, createBlock as i, openBlock as f, withCtx as o, createVNode as n, createTextVNode as l } from "vue";
import { VBtn as m } from "vuetify/components/VBtn";
import { VCard as s, VCardTitle as p, VCardText as c, VCardActions as _ } from "vuetify/components/VCard";
import { VContainer as x } from "vuetify/components/VGrid";
const V = u({
name: "EliOlaMundo"
}), C = (e, t) => {
const r = e.__vccOpts || e;
for (const [a, d] of t)
r[a] = d;
return r;
};
function O(e, t, r, a, d, y) {
return f(), i(x, null, {
default: o(() => [
n(s, {
class: "mx-auto",
max_width: "400"
}, {
default: o(() => [
n(p, null, {
default: o(() => [...t[0] || (t[0] = [
l("Olá Mundo!", -1)
])]),
_: 1
}),
n(c, null, {
default: o(() => [...t[1] || (t[1] = [
l(" Este é um componente de exemplo integrado com Vuetify. ", -1)
])]),
_: 1
}),
n(_, null, {
default: o(() => [
n(m, {
color: "primary",
block: ""
}, {
default: o(() => [...t[2] || (t[2] = [
l(" Botão Vuetify ", -1)
])]),
_: 1
})
]),
_: 1
})
]),
_: 1
})
]),
_: 1
});
}
const k = /* @__PURE__ */ C(V, [["render", O]]), T = {
install(e) {
e.component("EliOlaMundo", k);
}
};
export {
k as EliOlaMundo,
T as default
};

1
dist/eli-vue.umd.js vendored Normal file
View file

@ -0,0 +1 @@
(function(t,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify/components/VBtn"),require("vuetify/components/VCard"),require("vuetify/components/VGrid")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify/components/VBtn","vuetify/components/VCard","vuetify/components/VGrid"],e):(t=typeof globalThis<"u"?globalThis:t||self,e(t.eli_vue={},t.Vue,t.VBtn,t.VCard,t.VGrid))})(this,(function(t,e,f,i,s){"use strict";const a=e.defineComponent({name:"EliOlaMundo"}),c=(o,n)=>{const d=o.__vccOpts||o;for(const[l,u]of n)d[l]=u;return d};function p(o,n,d,l,u,m){return e.openBlock(),e.createBlock(s.VContainer,null,{default:e.withCtx(()=>[e.createVNode(i.VCard,{class:"mx-auto",max_width:"400"},{default:e.withCtx(()=>[e.createVNode(i.VCardTitle,null,{default:e.withCtx(()=>[...n[0]||(n[0]=[e.createTextVNode("Olá Mundo!",-1)])]),_:1}),e.createVNode(i.VCardText,null,{default:e.withCtx(()=>[...n[1]||(n[1]=[e.createTextVNode(" Este é um componente de exemplo integrado com Vuetify. ",-1)])]),_:1}),e.createVNode(i.VCardActions,null,{default:e.withCtx(()=>[e.createVNode(f.VBtn,{color:"primary",block:""},{default:e.withCtx(()=>[...n[2]||(n[2]=[e.createTextVNode(" Botão Vuetify ",-1)])]),_:1})]),_:1})]),_:1})]),_:1})}const r=c(a,[["render",p]]),V={install(o){o.component("EliOlaMundo",r)}};t.EliOlaMundo=r,t.default=V,Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})}));

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;