card.js 612 B

12345678910111213141516171819202122232425262728293031
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var runtime = require('../../../utils/vue/props/runtime.js');
  4. const cardProps = runtime.buildProps({
  5. header: {
  6. type: String,
  7. default: ""
  8. },
  9. footer: {
  10. type: String,
  11. default: ""
  12. },
  13. bodyStyle: {
  14. type: runtime.definePropType([String, Object, Array]),
  15. default: ""
  16. },
  17. headerClass: String,
  18. bodyClass: String,
  19. footerClass: String,
  20. shadow: {
  21. type: String,
  22. values: ["always", "hover", "never"],
  23. default: "always"
  24. }
  25. });
  26. exports.cardProps = cardProps;
  27. //# sourceMappingURL=card.js.map