1.代码写在main.js中
// 设置 Input 组件默认 clearable 属性
ElementUI.Input.props.clearable.default = true;
// 设置 Select 组件默认 clearable、filterable 属性
ElementUI.Select.props.clearable.default = true;
ElementUI.Select.props.filterable.default = true;
// 是否可以通过点击 modal 关闭 Dialog
ElementUI.Dialog.props.closeOnClickModal.default = false;
网友评论