'ElNotification' cannot be used as a value because it was imported using 'import

693 阅读1分钟

ts类型检查的原因 去掉type

import type { ElForm, ElNotification, ElMessage } from 'element-plus';

换成

import { ElForm, ElNotification, ElMessage } from 'element-plus';

image.png