02 2022 档案

摘要:用margin来设置空白 阅读全文
posted @ 2022-02-28 23:53 羽鱼 阅读(196) 评论(0) 推荐(0) 编辑
摘要:在子元素上加flex-shrink:0; flex-shrink属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。 阅读全文
posted @ 2022-02-28 22:21 羽鱼 阅读(175) 评论(0) 推荐(0) 编辑
摘要:把文件放到public里面 然后通过 axios.get 去加载 阅读全文
posted @ 2022-02-28 11:58 羽鱼 阅读(136) 评论(0) 推荐(0) 编辑
摘要:百度前端技术学园 (baidu.com) 阅读全文
posted @ 2022-02-28 10:34 羽鱼 阅读(29) 评论(0) 推荐(0) 编辑
摘要:Summary | 《Flutter实战·第二版》 (flutterchina.club) 阅读全文
posted @ 2022-02-28 09:01 羽鱼 阅读(447) 评论(0) 推荐(0) 编辑
摘要:JS开发常用工具函数(上)_吴小迪的博客-CSDN博客 前端开发常用JS功能函数(中)_吴小迪的博客-CSDN博客 前端开发常用JS功能函数(下)_吴小迪的博客-CSDN博客 阅读全文
posted @ 2022-02-28 08:45 羽鱼 阅读(35) 评论(0) 推荐(0) 编辑
摘要:在scroll-view 上添加 css white-space: nowrap; 属性即可 阅读全文
posted @ 2022-02-28 00:31 羽鱼 阅读(306) 评论(0) 推荐(0) 编辑
摘要:通过给设置 display: flex的元素添加 &::after 伪元素 然后设置对应宽度 //SCSS&::after { content: ""; min-width: 26rpx; height: 10rpx; } 阅读全文
posted @ 2022-02-28 00:04 羽鱼 阅读(1035) 评论(0) 推荐(0) 编辑
摘要:最近刚好需要一个表单生成器,vform挺不错的,功能比较齐全!微信群也比较活跃,作者会回答你遇见的问题。 VForm是一款基于Vue 2/Vue 3的低代码表单,支持Element UI、iView两种UI库,定位为前端开发人员提供快速搭建表单、实现表单交互和数据收集的功能。 VForm全称为Var 阅读全文
posted @ 2022-02-26 10:37 羽鱼 阅读(11466) 评论(0) 推荐(0) 编辑
摘要:this.$refs.vFormRef.setFormJson(data) 阅读全文
posted @ 2022-02-26 10:34 羽鱼 阅读(451) 评论(0) 推荐(0) 编辑
摘要:uni.login({ provider: "weixin", success: (res) => { console.log(res.code) uniCloud.callFunction({ name: "getOpenid", data: { code: res.code } }).then( 阅读全文
posted @ 2022-02-23 22:27 羽鱼 阅读(342) 评论(0) 推荐(0) 编辑
摘要:无效引入 @import url('@/common/common.scss'); 正确方法 @import '@/common/common.scss'; /* 绝对路径 */@import url('/common/uni.css');@import url('@/common/uni.css' 阅读全文
posted @ 2022-02-22 14:07 羽鱼 阅读(572) 评论(0) 推荐(0) 编辑
摘要:onLoad() //页面初始化执行,用户页面获取参数 通过this.$nextTick(function(){}) 或者在 onReady() //页面初次渲染完毕执行 阅读全文
posted @ 2022-02-22 10:12 羽鱼 阅读(1141) 评论(0) 推荐(0) 编辑
摘要:Error: 暂不支持动态组件 <component :is="****"></component> 不能用vue的 :is来动态加载组建,如果需要用多个v-if 判断 阅读全文
posted @ 2022-02-22 09:18 羽鱼 阅读(670) 评论(0) 推荐(0) 编辑
摘要:el-form 的:model="form" ref="form"在vue3中值不能相同 把ref去掉 或者改名即可 阅读全文
posted @ 2022-02-11 12:31 羽鱼 阅读(1335) 评论(0) 推荐(0) 编辑