useDraw.js 168 B

12345678
  1. "use strict";
  2. function useDraw(props, emit) {
  3. const handleClose = () => {
  4. emit("update:show", false);
  5. };
  6. return { handleClose };
  7. }
  8. exports.useDraw = useDraw;