backtop.mjs 386 B

123456789101112131415161718192021222324
  1. const backtopProps = {
  2. visibilityHeight: {
  3. type: Number,
  4. default: 200
  5. },
  6. target: {
  7. type: String,
  8. default: ""
  9. },
  10. right: {
  11. type: Number,
  12. default: 40
  13. },
  14. bottom: {
  15. type: Number,
  16. default: 40
  17. }
  18. };
  19. const backtopEmits = {
  20. click: (evt) => evt instanceof MouseEvent
  21. };
  22. export { backtopEmits, backtopProps };
  23. //# sourceMappingURL=backtop.mjs.map