vue3中Element-plus全局配置Dialog遮罩层点击不关闭

在main.js文件中进行如下配置:

import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import App from './App'

const app = createApp(App)
app.use(ElementPlus, {})
app._context.components.ElDialog.props.closeOnClickModal.default = false

你可能感兴趣的:(vue.js,前端)