上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页
摘要: 通过给设置 display: flex的元素添加 &::after 伪元素 然后设置对应宽度 //SCSS&::after { content: ""; min-width: 26rpx; height: 10rpx; } 阅读全文
posted @ 2022-02-28 00:04 羽鱼 阅读(1238) 评论(0) 推荐(0)
摘要: 最近刚好需要一个表单生成器,vform挺不错的,功能比较齐全!微信群也比较活跃,作者会回答你遇见的问题。 VForm是一款基于Vue 2/Vue 3的低代码表单,支持Element UI、iView两种UI库,定位为前端开发人员提供快速搭建表单、实现表单交互和数据收集的功能。 VForm全称为Var 阅读全文
posted @ 2022-02-26 10:37 羽鱼 阅读(11929) 评论(0) 推荐(0)
摘要: this.$refs.vFormRef.setFormJson(data) 阅读全文
posted @ 2022-02-26 10:34 羽鱼 阅读(476) 评论(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 羽鱼 阅读(396) 评论(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 羽鱼 阅读(593) 评论(0) 推荐(0)
摘要: onLoad() //页面初始化执行,用户页面获取参数 通过this.$nextTick(function(){}) 或者在 onReady() //页面初次渲染完毕执行 阅读全文
posted @ 2022-02-22 10:12 羽鱼 阅读(1164) 评论(0) 推荐(0)
摘要: Error: 暂不支持动态组件 <component :is="****"></component> 不能用vue的 :is来动态加载组建,如果需要用多个v-if 判断 阅读全文
posted @ 2022-02-22 09:18 羽鱼 阅读(795) 评论(0) 推荐(0)
摘要: el-form 的:model="form" ref="form"在vue3中值不能相同 把ref去掉 或者改名即可 阅读全文
posted @ 2022-02-11 12:31 羽鱼 阅读(1423) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-01-17 16:08 羽鱼 阅读(58) 评论(0) 推荐(0)
摘要: <template> <div style="border: 1px solid #ccc"> <div id="toolbar-container"></div> <div id="editor-container"></div> </div> </template> import { creat 阅读全文
posted @ 2022-01-17 15:40 羽鱼 阅读(325) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页