Parcourir la source

fix: 修复图片裁剪组件问题

xiaoxian521 il y a 3 ans
Parent
commit
fe2cf22e23
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/components/ReCropper/src/index.tsx

+ 2 - 2
src/components/ReCropper/src/index.tsx

@@ -1,7 +1,7 @@
 import type { CSSProperties } from "vue";
 import type { CSSProperties } from "vue";
 import {
 import {
   defineComponent,
   defineComponent,
-  onBeforeMount,
+  onMounted,
   nextTick,
   nextTick,
   ref,
   ref,
   unref,
   unref,
@@ -113,7 +113,7 @@ export default defineComponent({
       });
       });
     }
     }
 
 
-    onBeforeMount(() => {
+    onMounted(() => {
       nextTick(() => {
       nextTick(() => {
         init();
         init();
       });
       });