logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

修改element 的el-radio的选中样式变成对勾

我这个是在全局改的,在app.vue页面(用了深度选择器)#app /deep/ .el-radio__input.is-checked .el-radio__inner::after {content: '';width: 10px;height: 5px;border: 2px solid white;border-top: transparent;border-right: transpar

vue 转换时间格式 为年月日时分秒和年月日(补零)

方法一在main.js引入 过滤器Vue.filter('dateFormat', function(originVal) {const dt = new Date(originVal)const y = dt.getFullYear()const m = (dt.getMonth() + 1 + '').padStart(2, '0')const d = (dt.getDate() + '').

vue 实现el-select的change事件

<el-select v-model="newForm.xid" @change="getline"><el-optionv-for="item in linedata":key="item.xid":label="item.xdName":value="{value:item.xid,label:ite.

Vue禁止自动填充浏览器用户名密码

readonlyonfocus="this.removeAttribute('readonly')"<el-inputreadonlyonfocus="this.removeAttribute('readonly')"type="password"v-model="passForm.newPassword"show-passwordplaceholder="请输入密码"@input="$fo

#vue.js#html#html5
pc端检测本地电脑是否安装某应用,安装则打开反之则下载(vue 脚手架3)

vue使用protocolCheck需要全局引入**在需要得页面使用这个方法我的需求是1.电脑未下载,调用后台拿到路径用window.href下载到本地2 电脑已下载,弹出浏览器自带得框**window.protocolCheck('u3d://',(fail) => {console.log('fail', fail)// 没有安装 弹窗显示 引导去下载

#vue.js#javascript#前端
vue级联选择器的getCheckedNodes用法

<el-cascader:options="menudata":props="defaultPropsa"v-model="val"clearable@change="menuchange"></el-cascader>data(){return{defaultPropsa: {//三级联动children: "children",label: "lab.

到底了