设置layout,表示需要显示的内容,用逗号分隔,布局元素会依次显示。prev表示上一页,next为下一页,pager表示页码列表,除此以外还提供了jumper和total,size和特殊的布局符号->,->后的元素会靠右显示,jumper表示跳页元素,total表示总条目数,size用于设置每页显示的页码数量。
const url = window.URL.createObjectURL(new Blob([response], { type: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' })); //创建一个新的 链接元素,并设置其 href 属性为刚才创建的 Blob URL const link = document.createElement('a'); link.href = url; //设置链接的 do...
<el-container>:外层容器。当子元素中包含<el-header>或<el-footer>时,全部子元素会垂直上下排列,否则会水平左右排列。 属性: direction:指定子元素的排列方式,string类型,属性值:horizontal / vertical <el-header>:顶栏容器。 属性: height:顶部栏的高度,默认是60px,string类型。 <el-aside>:侧边栏容器。 属...