cashout.ts 268 B

123456789
  1. import { mountComponent, useUnmountComponent } from "@/utils/mount-component";
  2. import cashout from "./cashout.vue";
  3. export const showCashout = (callback: () => any) => {
  4. const { unmount } = mountComponent(cashout, { callback });
  5. return {
  6. unmount,
  7. };
  8. };