backtop.js 499 B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. const backtopProps = {
  4. visibilityHeight: {
  5. type: Number,
  6. default: 200
  7. },
  8. target: {
  9. type: String,
  10. default: ""
  11. },
  12. right: {
  13. type: Number,
  14. default: 40
  15. },
  16. bottom: {
  17. type: Number,
  18. default: 40
  19. }
  20. };
  21. const backtopEmits = {
  22. click: (evt) => evt instanceof MouseEvent
  23. };
  24. exports.backtopEmits = backtopEmits;
  25. exports.backtopProps = backtopProps;
  26. //# sourceMappingURL=backtop.js.map