码迷,mamicode.com
首页 >  
搜索关键字:quota template    ( 9122个结果
IDEA插件-Git Commit Template
安装: ? 去IDEA插件应用商城下载。 简介: Git Commit message规范采用的是Angular 规范 Angular规范中定义的格式有3个内容: Header | ? |- type(必需) : Type of change:commit的类别; ? |- scope(可选):Sc ...
分类:其他好文   时间:2020-07-03 17:58:43    阅读次数:179
在element-ui组件注册之前,对其进行调整
拿button组件举例 。 button.vue <template> <Button v-bind="$attrs"> <slot></slot> </Button> </template> <script> import {Button} from "element-ui"; export de ...
分类:其他好文   时间:2020-07-03 15:51:48    阅读次数:113
vue项目中解决文件上传 change事件只执行一次的问题
vue项目中解决文件上传 change事件只执行一次的问题 文件上传第一次上传一个文件后,再次上传这个文件,无法执行change事件, 01) 解决办法,借助v-if 02) 使用 Ant Design Vue 官方的 upload demo: <template> <div> <h3>这里是需求页 ...
分类:Web程序   时间:2020-07-03 15:22:57    阅读次数:250
关闭caffe日志输出
在caffe加载模型的时候会输出一大串log,该log可以通过如下方法关闭 在编译libcaffe.so的时候,在src/caffe/net.cpp Init函数进入的时候加入 fLI::FLAGS_minloglevel=3; 如下所示 template <typename Dtype> void ...
分类:其他好文   时间:2020-07-02 16:30:42    阅读次数:62
Vue 中 v-model 在自定义组件中的使用
<div id="app"> "inputValue 的值:" + {{inputValue}} <my-input v-model="inputValue"></my-input> </div> Vue.component('my-input', { template: '<div><input ...
分类:其他好文   时间:2020-07-02 16:13:37    阅读次数:54
Element 对话框简单使用
官方文档介绍的是页内对话框,但没有基于组件的对话框,这里记录一下,原理就是父子传值是否显示 父页导入组件 <template> <div class="home"> <el-button @click="btnAdd">添加用户</el-button> <Dialog :visible.sync=" ...
分类:其他好文   时间:2020-07-02 16:06:08    阅读次数:105
element ui 自定义步骤条
###步骤条添加待完成,进行中,已完成三个状态的操作,我这里封装的组件 ######Vue 文件 <template> <div class="elx-steps-horizontal"> <div v-for="(item,index) in abstracts" class="info" :ke ...
分类:其他好文   时间:2020-07-02 13:39:40    阅读次数:103
element中合并单元格操作
vue中使用element合并表格的行或者列 <template> <div> <el-table :data="tableData" :span-method="arraySpanMethod" border style="width: 100%"> <el-table-column prop=" ...
分类:其他好文   时间:2020-07-02 10:42:28    阅读次数:64
【vue】---- ElementUI 实现上传Excel
1、功能描述:vue 项目使用 el-upload 实现上传 Excel。 2、功能效果:在el-upload基础上做了样式整改。 3、功能实现: // el-upload 上传组件 <template> <div> <el-upload ref="upload" class="upload-dem ...
分类:Web程序   时间:2020-07-01 22:32:10    阅读次数:220
virtualenv中执行python脚本报错ImportError: No module named markupsafe 或 No such file or directory: '/tmp/tmp0lEZD9/lib/python'
2env为我使用virtualen创建的虚拟python环境,我的本地要使用的各类库已下载到文件夹lianxi下面,ceshi2.txt为我要安装的各类库包列表 (2env) [root@xxxxxxx]$ ./2env/bin/python wsgi.pyTraceback (most recen ...
分类:编程语言   时间:2020-07-01 20:37:26    阅读次数:58
9122条   上一页 1 ... 48 49 50 51 52 ... 913 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!