UNPKG

@opensig/opendesign

Version:

<p align="center"><img src="../docs/public/opendesign-logo-light.png"/></p> <h1 align="center">opendesign</h1> <p align="center">一个 Vue 3 组件库</p> <p align="center"><b>皮肤可定制,使用 TypeScript</b></p>

36 lines (35 loc) 658 B
"use strict"; Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }); const DividerVariantTypes = ["solid", "dashed", "dotted"]; const dividerProps = { /** * 分割线类型 DividerVariantT */ variant: { type: String, default: "solid" }, /** * 分割线方向 DirectionT */ direction: { type: String, default: "h" }, /** * 自定义内容位置 */ labelPosition: { type: String, default: "center" }, /** * 是否颜色加深 */ darker: { type: Boolean, default: false } }; exports.DividerVariantTypes = DividerVariantTypes; exports.dividerProps = dividerProps;