element组件有哪些你不知道的全局定义方法

2024年08月17日 建站教程

功能介绍:想定义一些全局变量,不想在没个页面都都加一些相同的参数,比如当内容过长被隐藏时显示设置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)

本文链接:http://so.lmcjl.com/news/11019/

展开阅读全文
相关内容