摘要: 表格中的selection栏 <el-table-column type="selection" width="55" :selectable="checkboxT" //加上该方法 ></el-table-column> checkboxT() { if (this.liveForm.lectur 阅读全文
posted @ 2020-11-17 17:39 Jennyishere 阅读(1877) 评论(0) 推荐(0)
摘要: npm config set registry http://registry.npm.taobao.org/ 阅读全文
posted @ 2020-10-30 10:55 Jennyishere 阅读(148) 评论(0) 推荐(0)
摘要: 安装vue-cli npm install vue-cli -g 安装electron-vue框架 vue init simulatedgreg/electron-vue +项目名称 安装依赖 npm run dev 启动 yarn dev 如有报错 参考该文章吧 https://blog.csdn 阅读全文
posted @ 2020-10-15 16:51 Jennyishere 阅读(99) 评论(0) 推荐(0)
摘要: 直接上代码吧 ::v-deep .el-table__header { width: 100% !important; } ::v-deep .el-table__body { width: 100% !important; } 阅读全文
posted @ 2020-10-15 15:23 Jennyishere 阅读(239) 评论(0) 推荐(0)
摘要: <el-tabs id="manage" class="top-line" v-model="tabInfo.currentCard" type="card" @tab-click="handleClick" style="height: 100%" v-if="!hasEleAuth('admin 阅读全文
posted @ 2020-09-28 14:17 Jennyishere 阅读(1747) 评论(0) 推荐(1)
摘要: 配置.babelrc 首先安装 npm install -D transform-es2015-modules-commonjs 然后配置.babelrc "plugins": ["transform-es2015-modules-commonjs"] 阅读全文
posted @ 2020-09-11 10:32 Jennyishere 阅读(160) 评论(0) 推荐(0)
摘要: 在别人的GitHub拉下来的框架代码,通常指向的是原地址。可以通过命令查看当前的路径: git remote -v 如果查到的地址不是自己的账号地址时,可以通过命令修改: git remote set-url origin xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx//加上自己的仓 阅读全文
posted @ 2020-08-05 10:53 Jennyishere 阅读(686) 评论(0) 推荐(0)
摘要: 直接贴代码了: ::v-deep .el-radio__label { width: 100% !important; text-overflow: ellipsis; white-space: normal; line-height: 18px; // word-wrap: break-word 阅读全文
posted @ 2020-07-30 20:15 Jennyishere 阅读(5026) 评论(0) 推荐(0)
摘要: 首先看看需求,tab栏上的一个active样式 //找到active时的选择器 .active::before { content: ''; width: 100%; height: 6px; background-color: green; display: inline-block; posit 阅读全文
posted @ 2020-07-01 17:15 Jennyishere 阅读(1308) 评论(0) 推荐(0)
摘要: 主要差异是在script里 <script lang="ts"> import {Vue, Component,Prop,Emit,Watch,Modal...} from 'vue-property-decorator'; //按需引入所需的 @Component({}) export defau 阅读全文
posted @ 2020-06-30 11:03 Jennyishere 阅读(344) 评论(0) 推荐(0)