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