props.js 482 B

1234567891011121314151617181920212223242526272829
  1. const props = {
  2. buttonProps: {
  3. type: Object,
  4. },
  5. draggable: {
  6. type: null,
  7. value: false,
  8. },
  9. icon: {
  10. type: String,
  11. value: '',
  12. },
  13. style: {
  14. type: String,
  15. value: 'right: 16px; bottom: 32px;',
  16. },
  17. text: {
  18. type: String,
  19. value: '',
  20. },
  21. usingCustomNavbar: {
  22. type: Boolean,
  23. value: false,
  24. },
  25. yBounds: {
  26. type: Array,
  27. },
  28. };
  29. export default props;