index.js 436 B

12345678910111213141516171819202122
  1. import Vue from 'vue'
  2. import Confirm from './Confirm.vue'
  3. let newInstance;
  4. const ConfirmInstance = Vue.extend(Confirm)
  5. const initInstance = () => {
  6. newInstance = new ConfirmInstance()
  7. document.body.appendChild(newInstance.$mount().$el)
  8. }
  9. export const confirm = (options) => {
  10. if (!newInstance) {
  11. initInstance()
  12. }
  13. Object.assign(newInstance, options)
  14. return newInstance.show(vm => {
  15. newInstance = null
  16. })
  17. }