在vite项目中关于 ElMessage 组件使用问题
在一个单独的js文件中使用 ElMessage 组件发现无法使用 (这个js文件被引入到组件中了)
import { ElMessage } from 'element-plus'ElMessage({
message: 'this is a message.',
grouping: true,
type: 'success',
})
在一个组件中,可以使用
ElMessage({ message: 'this is a message.',
grouping: true,
type: 'success',
})
由于我封装了一个自定义的 hook ,这个 hook 中却无法使用 ElMessage 请问该怎么解决?
谢谢帮助
以上是 在vite项目中关于 ElMessage 组件使用问题 的全部内容, 来源链接: utcz.com/p/937194.html