tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
22 lines (21 loc) • 475 B
JavaScript
import { defineComponent as t, openBlock as o, createElementBlock as r, normalizeStyle as n, renderSlot as l } from "vue";
const s = { name: "TyhFooter" }, h = /* @__PURE__ */ t({
...s,
props: {
height: {
type: String,
default: () => "60px"
}
},
setup(a) {
return (e, p) => (o(), r("footer", {
class: "tyh-footer",
style: n({ height: e.height })
}, [
l(e.$slots, "default")
], 4));
}
});
export {
h as default
};