popup.js 461 B

12345678910111213141516171819202122232425
  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. }
  17. export default {
  18. data() {
  19. return {
  20. config: config
  21. }
  22. },
  23. mixins: [message],
  24. }