FormItem 中使用 Input type="number" 时会报错: [Vue warn]: Invalid prop: custom validator check failed for prop "type". 只有vue.js 使用未压缩时才出现. 例子:https://codepen.io/liuxian2014/pen/MOgPmN
但是iView里的Input组件好像没有提供on-scroll指令,请问应该怎么办? iviewscroll 有用关注2收藏 回复 阅读4.1k 1 个回答 得票最新 a453228609 26917 发布于 2018-04-26 ✓ 已被采纳 可以在mounted中绑定scroll事件来处理mounted: { // 首先通过$refs获取dom元素 this.textArea = this.$refs.viewTextArea; /...
源码在iview/src/components/input和iview/src/utils/calcTextareaHeight中 2.在家新建项目,引入iview,然后修改ivew/src/components里面组件的值,发现不起作用。 原因:直接在main.js里面引iview,引入的是iview/dist里面的文件,需要按需引入iview里面的组件。 参考一些框架,可以新建个plugins.js文件,然后 import{Input,Ca...
2.修改组件源码中的index.js 在props选项中增加autoheight: { type: Boolean, value: true } 3.修改组件源码中的index.wxss中的i-input-input样式, 将height:auto取消, 并在文件最后增加 textarea {height: 100%} 样式 4.在调用层 设置:autoheight="false" 并增加i-class="custom-textarea-height"样式 ...