1.range-key的使用
:range-key="'label'" label要加单引号
2.变量
var:声明全局变量,换句话理解就是,声明在for循环中的变量,跳出for循环同样可以使用。
let:声明块级变量,即局部变量。
const:用于声明常量,也具有块级作用域
3.传值
父 传值 子 使用 props
子 传值 父 使用 this.$emit
使用实例:https://bbs.huaweicloud.com/blogs/240038 uniapp实现选项卡切换内容
https://www.cnblogs.com/1463069300limingzhi/p/12202034.html
5.单行溢出隐藏(适合flex)
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
6.多行输入
<textarea class="mt" v-model="resumexx.address" placeholder="请输入通讯地址"
auto-height maxlength='-1' style="width: 100%;"></textarea>
7.返回上一页并传参
https://www.cnblogs.com/ldlx-mars/p/10598708.html
8.小白开发网址指南
https://www.runoob.com/cssref/css3-pr-flex.html css的查询使用
https://uniapp.dcloud.io/README uniapp开发指南
https://hellouniapp.dcloud.net.cn/pages/component/view/view hellouniapp效果展示
https://cn.vuejs.org/v2/api/#vm-emit vue的使用
未完待续。。。
网友评论