zview-plus
Version:
基于 Vue3 的 UI 组件库
21 lines (20 loc) • 361 B
JavaScript
const t = {
direction: {
type: String,
values: ["horizontal", "vertical"],
default: "horizontal"
},
contentPosition: {
type: String,
values: ["left", "center", "right"],
default: "center"
},
borderStyle: {
type: String,
values: ["solid", "dashed", "dotted"],
default: "solid"
}
};
export {
t as DividerProps
};