소스 검색

提交代码

ZaiZai 2 년 전
부모
커밋
9abb338ca0
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      src/App.vue

+ 6 - 6
src/App.vue

@@ -3,12 +3,12 @@
 </template>
 
 <script setup>
-import {onMounted} from 'vue';
-import {ElLoading, ElMessage, ElMessageBox, ElNotification} from 'element-plus'
+import { onMounted } from 'vue'
+import { ElLoading, ElMessage, ElMessageBox, ElNotification } from 'element-plus'
 onMounted(() => {
-    window['$loading'] = ElLoading;
-    window['$messageBox'] = ElMessageBox;
-    window['$message'] = ElMessage;
-    window['$notification'] = ElNotification;
+    window['$loading'] = ElLoading
+    window['$messageBox'] = ElMessageBox
+    window['$message'] = ElMessage
+    window['$notification'] = ElNotification
 })
 </script>