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

Commit

Permalink
fix(AtFab): 修复AtFab props 类型
Browse files Browse the repository at this point in the history
  • Loading branch information
psaren committed May 30, 2020
1 parent 460d002 commit 91bb7ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/fab/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ export default {
validator: (val) => ['normal', 'small'].includes(val),
},
className: {
type: String,
type: [Object, String],
default: '',
},
handleClick: {
type: Function,
default: () => {},
default: () => () => {},
},
},
methods: {
Expand Down

0 comments on commit 91bb7ca

Please sign in to comment.