props.js 296 B

123456789101112131415161718
  1. const props = {
  2. buttonProps: {
  3. type: Object,
  4. },
  5. icon: {
  6. type: String,
  7. value: '',
  8. },
  9. style: {
  10. type: String,
  11. value: 'right: 16px; bottom: 32px;',
  12. },
  13. text: {
  14. type: String,
  15. value: '',
  16. },
  17. };
  18. export default props;