popup.js 464 B

1234567891011121314151617181920212223242526272829
  1. import message from './message.js';
  2. // 定义 type 类型:弹出类型:top/bottom/center
  3. const config = {
  4. // 顶部弹出
  5. top: 'top',
  6. // 底部弹出
  7. bottom: 'bottom',
  8. // 居中弹出
  9. center: 'center',
  10. // 消息提示
  11. message: 'top',
  12. // 对话框
  13. dialog: 'center',
  14. // 分享
  15. share: 'bottom',
  16. // picker
  17. picker: 'bottom',
  18. // actionsheet
  19. actionsheet: 'bottom'
  20. }
  21. export default {
  22. data() {
  23. return {
  24. config: config
  25. }
  26. },
  27. mixins: [message],
  28. }