uv-ui
Version:
基于vue3的移动端组件库
26 lines (25 loc) • 625 B
JavaScript
import { openBlock as t, createElementBlock as a, normalizeClass as r, normalizeStyle as o } from "vue";
import "./skeleton-paragraph.vue_vue_type_style_index_0_lang.js";
const l = {
name: "UvSkeletonParagraph"
}, c = /* @__PURE__ */ Object.assign(l, {
props: {
round: {
type: Boolean,
default: !1
},
rowWidth: {
type: String,
default: "100%"
}
},
setup(e) {
return (n, s) => (t(), a("div", {
class: r(["uv-skeleton-paragraph", e.round ? "uv-skeleton-paragraph-round" : ""]),
style: o({ width: e.rowWidth })
}, null, 6));
}
});
export {
c as default
};