element组件有哪些你不知道的全局定义方法
功能介绍:想定义一些全局变量,不想在没个页面都都加一些相同的参数,比如当内容过长被隐藏时显示设置show-overflow-tooltip
。
把下面全部方法引入main.js
//点击遮罩层是否关闭Dialog
ElementUI.Dialog.props.closeOnclickModal.default = false;
全局去除dialog关闭按钮
ElementUI.Dialog.props.showClose.default = false
//按esc键是否关闭Dialog
ElementUI.Dialog.props.closeOnPressEscape.default = false
//Dialog是否在body里追加
ElementUI.Dialog.props.modalAppendToBody.default = false;
//分页默认
ElementUI.Pagination.props.layout.default="prev, pager, next, jumper";
ElementUI.Pagination.props.pageSize.default=10;
// table th和td居中
ElementUI.TableColumn.props.align={type:String, default:"center"};
ElementUI.TableColumn.props.headerAlign={type: String, default: "center"};
//table td文本过长隐藏显示...
ElementUI.TableColumn.props.showOverflowTooltip ={type:Boolean, default: true}
Vue.use(ElementUI)
以上是编程学习网小编为您介绍的“element组件有哪些你不知道的全局定义方法”的全面内容,想了解更多关于 seo教程vuejs 内容,请继续关注编程基础学习网。