¶Ô±ÈÐÂÎļþ |
| | |
| | | export default { |
| | | props: { |
| | | // æ¾ç¤ºæå |
| | | title: { |
| | | type: String, |
| | | default: uni.$u.props.alert.title |
| | | }, |
| | | // 主é¢ï¼success/warning/info/error |
| | | type: { |
| | | type: String, |
| | | default: uni.$u.props.alert.type |
| | | }, |
| | | // è¾
婿§æå |
| | | description: { |
| | | type: String, |
| | | default: uni.$u.props.alert.description |
| | | }, |
| | | // æ¯å¦å¯å
³é |
| | | closable: { |
| | | type: Boolean, |
| | | default: uni.$u.props.alert.closable |
| | | }, |
| | | // æ¯å¦æ¾ç¤ºå¾æ |
| | | showIcon: { |
| | | type: Boolean, |
| | | default: uni.$u.props.alert.showIcon |
| | | }, |
| | | // æµ
ææ·±è²è°ï¼light-æµ
è²ï¼dark-æ·±è² |
| | | effect: { |
| | | type: String, |
| | | default: uni.$u.props.alert.effect |
| | | }, |
| | | // æåæ¯å¦å±
ä¸ |
| | | center: { |
| | | type: Boolean, |
| | | default: uni.$u.props.alert.center |
| | | }, |
| | | // åä½å¤§å° |
| | | fontSize: { |
| | | type: [String, Number], |
| | | default: uni.$u.props.alert.fontSize |
| | | } |
| | | } |
| | | } |