分类:vue

vue开发笔记

vue页面滚动时设置顶部导航背景色

vue页面滚动时设置顶部导航背景色
vue外包项目要求页面滚动的时候,顶部导航跟随滚动,但是顶部导航的背景是透明的,这就需要根据距离顶部的距离给一个背景色,背景色随着页面往下滚动逐渐加深,网上滚动逐渐透明 <div class="pageHeader" :style="'back...

3年前 (2022-09-23) 喜欢

vue 获取距离顶部的距离

vue 获取距离顶部的距离
vue外包项目要求页面滚动的时候,顶部导航跟随滚动,但是顶部导航的背景是透明的,这就需要根据距离顶部的距离给一个背景色,首先需要获取距离顶部的距离 mounted() { window.addEventListener('scroll', this.getScrollIn...

3年前 (2022-09-23) 喜欢

vue element ui 表单邮件地址验证

vue element ui 表单邮件地址验证
vue element ui 实现表单邮件地址验证功能 var checkEmail = (rule, value, cb) => { // 验证邮箱的正则表达式 const regEmail = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])...

3年前 (2022-09-19) 喜欢

vue element ui el-form手机号校验

vue element ui el-form手机号校验
Vue element ui el-form 需要添加一个手机号码校验,记录一下, 参考地址 代码 <el-form :model="ruleForm" status-icon :rules="rules" ref="ru...

3年前 (2022-09-09) 喜欢

Figma如何导出fig文件到本地

Figma如何导出fig文件到本地
vue外包项目开发时,设计使用的是Figma,但是我并不会用Figma所以想着将文件导出来上传到蓝湖使用。将导出方法记录一下。 点击左上角选择file-Save local copy 保存到本地 ...

3年前 (2022-09-02) 喜欢

vue 获取div的宽和高

vue 获取div的宽和高
vue 获取元素的宽度和高度 <div ref="echarts1"></div> 获取宽和高 let width = this.$refs.echarts1.offsetWidth let height = this.$refs....

3年前 (2022-09-01) 喜欢