Skip to content
This repository has been archived by the owner on Oct 27, 2021. It is now read-only.

Commit

Permalink
fix: 修复 divider props 类型
Browse files Browse the repository at this point in the history
  • Loading branch information
psaren committed May 30, 2020
1 parent b80989d commit 53b5d3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/divider/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ export default {
default: '',
},
height: {
type: Number,
type: [Number, String],
default: 0,
},
fontColor: {
type: String,
default: '',
},
fontSize: {
type: Number,
type: [Number, String],
default: 0,
},
lineColor: {
Expand Down

0 comments on commit 53b5d3c

Please sign in to comment.