UNPKG

@hopeio/utils

Version:
30 lines (29 loc) 472 B
import { ElCol as o } from "element-plus"; import { defineComponent as s, h as l } from "vue"; const n = s({ name: "ReCol", props: { value: { type: Number, default: 24 } }, render() { const e = this.$attrs, t = this.value; return l( o, { xs: t, sm: t, md: t, lg: t, xl: t, ...e }, { default: () => this.$slots.default() } ); } }); export { n as default };