62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
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
|
|
};
|