随笔分类 - el-ui
摘要:.el-input__inner{ height:30px !important; .el-input__icon{ line-height: 24px !important; } .el-range-separator{ line-height:24px !important; }}
阅读全文
摘要:修改选中页码的样式: .el-pager .active{ color:red !important;//选中 } .el-pager .number:hover{ color:red !important;//移动 } 使用: <template> <div class="block"> <el-
阅读全文
摘要:标签页导航组件修改样式: .el-tabs__header .is-top div{ height:30px !important; line-height:30px !important; color:#9ca7b5; } .el-tabs__header .is-top div :hover{
阅读全文
摘要:这是一个头部卡片 <div class="top_card"></div> .top_card{ width:100%; min-height:180px; background-color: white; padding:10px 0px; overflow: hidden; } .el-row{
阅读全文
摘要:父组件: <template> <el-aside :width="width" style="transition: 0.5s;"> <a-dside @adsideOpen="adsideOpen"></a-dside> </el-aside> </template> <script> impo
阅读全文
摘要:全局引用: 一、安装 Element UI npm i element-ui -S 二、在main.js 中引入 element UI import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' /
阅读全文
摘要:<el-table-column> <template slot-scope="scope"> {{scope.row.值}} </template> </<el-table-column>
阅读全文
摘要:style标签添加 .el-table__header-wrapper{ padding:0 !important; line-height: 50px !important; } .el-table__row .cell{ padding:0 !important; line-height: 50
阅读全文
摘要:在 APP.vue css样式添加 html,body,#app{ width:100%; height:100%; margin: 0; padding: 0; } 在装Container容器的盒模型<div class="body"> <el-container style="height:10
阅读全文