diff --git a/.eslintrc-auto-import.json b/.eslintrc-auto-import.json index d979925..2ca3adf 100644 --- a/.eslintrc-auto-import.json +++ b/.eslintrc-auto-import.json @@ -5,10 +5,6 @@ "ComputedRef": true, "DirectiveBinding": true, "EffectScope": true, - "ElLoading": true, - "ElMessage": true, - "ElMessageBox": true, - "ElNotification": true, "ExtractDefaultPropTypes": true, "ExtractPropTypes": true, "ExtractPublicPropTypes": true, diff --git a/src/layout/components/notice/index.vue b/src/layout/components/notice/index.vue index 75e6521..6a0141f 100644 --- a/src/layout/components/notice/index.vue +++ b/src/layout/components/notice/index.vue @@ -63,11 +63,11 @@ const warningListStore = useWarningListStore(); const noticeStore = useNoticeStore(); const props = defineProps<{ - warningList?: any[]; + warningList: any; }>(); const { warningList } = toRefs(props); const warningListRows = computed(() => warningList.value?.rows || []); -console.log('666666666666666666_warningListRows', warningListRows.value); +// console.log('666666666666666666_warningListRows', warningListRows.value); const { readAll } = useNoticeStore(); const monitorVideoRef = ref();