logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Vue -- 使用element ui中的el-button、iview中的Input组件添加@click、@keyup.enter等事件,无效?

做vue项目中,我们会选择各种ui组件去搭建页面,如element ui 、iview等等。在使用它们的组件(如element ui中的<el-button>和iview中的<Input>)绑定事件如@click时,发现并没有效果?在页面上,使用element ui中的<el-button>、iview中的<Input>或者自己定义的组件,我们习..

Vue -- iview 中,给DatePicker赋初始值时报错: Invalid prop: type check failed for prop "value". Expected Date..

在项目中,给 DatePicker 日期选择器赋初始值时,报了错:type check failed for prop "value". Expected Date, String, Array, got Number with value 2019。 具体如下:原因:给DatePicker 赋的值必须是date类型,如果是字符串类型的,则需要使用new Date(value)将值转为...

Nodejs -- Nodejs Express搭建 + vue搭建打包 + 将vue打包后的文件放到express项目中运行

一. Nodejs Express搭建后面都称为“express项目”1. 全局安装(-g)express-generatornpm install express-generator -g2. 项目初始化(这里把项目名设置为server)express -e server如上,根据提示输入相应命令:cd server //进入项目目录下npm...

Vue -- 使用element ui中的el-button、iview中的Input组件添加@click、@keyup.enter等事件,无效?

做vue项目中,我们会选择各种ui组件去搭建页面,如element ui 、iview等等。在使用它们的组件(如element ui中的<el-button>和iview中的<Input>)绑定事件如@click时,发现并没有效果?在页面上,使用element ui中的<el-button>、iview中的<Input>或者自己定义的组件,我们习..

关于overflow:hidden的作用(溢出隐藏、清除浮动、解决外边距塌陷等等)

一. overflow:hidden 溢出隐藏给一个元素中设置overflow:hidden,那么该元素的内容若超出了给定的宽度和高度属性,那么超出的部分将会被隐藏,不占位。/*css样式*/<style type="text/css">div{ width: 150px; height: 60px; background: skyblue;overflo...

Vue -- vue项目,执行npm install,出现错误:Can't find Python executable "python", you can set the PYTHON env...

从github中,下载vue项目时,运行npm install ,会出现一下问题:Can't find Python executable "python", you can set the PYTHON env variable.错误原因:Node.js 在安装模块的时候报错,缺少python环境,因此需要安装python执行如下命令:npm install --py...

Vue -- vue项目,执行npm install,出现错误:Can't find Python executable "python", you can set the PYTHON env...

从github中,下载vue项目时,运行npm install ,会出现一下问题:Can't find Python executable "python", you can set the PYTHON env variable.错误原因:Node.js 在安装模块的时候报错,缺少python环境,因此需要安装python执行如下命令:npm install --py...

Vue -- vue项目,执行npm install,出现错误:Can't find Python executable "python", you can set the PYTHON env...

从github中,下载vue项目时,运行npm install ,会出现一下问题:Can't find Python executable "python", you can set the PYTHON env variable.错误原因:Node.js 在安装模块的时候报错,缺少python环境,因此需要安装python执行如下命令:npm install --py...

到底了