props.js 320 B

123456789101112131415161718192021
  1. const props = {
  2. description: {
  3. type: String,
  4. },
  5. icon: {
  6. type: null,
  7. value: true,
  8. },
  9. image: {
  10. type: String,
  11. },
  12. theme: {
  13. type: String,
  14. value: 'default',
  15. },
  16. title: {
  17. type: String,
  18. value: '',
  19. },
  20. };
  21. export default props;