会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Jennyishere
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2020年11月17日
element UI表格限制选中条数
摘要: 表格中的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)
2020年10月30日
设置淘宝镜像
摘要: npm config set registry http://registry.npm.taobao.org/
阅读全文
posted @ 2020-10-30 10:55 Jennyishere
阅读(148)
评论(0)
推荐(0)
2020年10月15日
electron-vue的一些学习笔记
摘要: 安装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)
ie下的element表格不能100%显示宽度
摘要: 直接上代码吧 ::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)
2020年9月28日
vue + element-ui 的tab组件,created、mounted请求两次
摘要: <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)
2020年9月11日
Cannot assign to read only property 'exports' of object .......
摘要: 配置.babelrc 首先安装 npm install -D transform-es2015-modules-commonjs 然后配置.babelrc "plugins": ["transform-es2015-modules-commonjs"]
阅读全文
posted @ 2020-09-11 10:32 Jennyishere
阅读(160)
评论(0)
推荐(0)
2020年8月5日
git远程仓库地址的查看和修改
摘要: 在别人的GitHub拉下来的框架代码,通常指向的是原地址。可以通过命令查看当前的路径: git remote -v 如果查到的地址不是自己的账号地址时,可以通过命令修改: git remote set-url origin xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx//加上自己的仓
阅读全文
posted @ 2020-08-05 10:53 Jennyishere
阅读(686)
评论(0)
推荐(0)
2020年7月30日
element的radio组件 选项过长换行
摘要: 直接贴代码了: ::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)
2020年7月1日
用纯CSS伪元素写一个倒梯形
摘要: 首先看看需求,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)
2020年6月30日
vue使用typescript的一些笔记
摘要: 主要差异是在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)
上一页
1
2
3
4
5
6
下一页
公告