hss-comp
Version:
hss component
46 lines (45 loc) • 1.25 kB
JavaScript
import { ref as c, openBlock as _, createElementBlock as a, createElementVNode as s, toDisplayString as n } from "vue";
const r = (t, e) => {
const o = t.__vccOpts || t;
for (const [l, m] of e)
o[l] = m;
return o;
}, p = { class: "university" }, f = { class: "redfont" }, g = { class: "bluefont" }, u = { class: "greenfont" }, h = {
__name: "Unitersity",
props: {
msg: String
},
setup(t) {
return c(0), (e, o) => (_(), a("div", p, [
s("p", f, n(t.msg), 1),
s("p", g, n(t.msg), 1),
s("p", u, n(t.msg), 1)
]));
}
}, i = /* @__PURE__ */ r(h, [["__scopeId", "data-v-d0334c9f"]]);
const v = { class: "department" }, y = { class: "redfont" }, x = { class: "bluefont" }, $ = { class: "greenfont" }, b = {
__name: "Department",
props: {
msg: String
},
setup(t) {
return c(0), (e, o) => (_(), a("div", v, [
s("p", y, n(t.msg), 1),
s("p", x, n(t.msg), 1),
s("p", $, n(t.msg), 1)
]));
}
}, d = /* @__PURE__ */ r(b, [["__scopeId", "data-v-588c0b20"]]), D = [i, d], E = {
install: (t) => {
D.forEach((e) => {
t.component(e.__name.toLowerCase(), e);
});
},
Unitersity: i,
Department: d
};
export {
d as Department,
i as Unitersity,
E as default
};