08 2022 档案
摘要:问题背景: export default { data(){ showItems: [false, false, false, false] }, methods: { showItem(index) { this.showItems[index] = true; }, cancelItem(ind
阅读全文
摘要:需求: 表单中默认有一条信息,用户可以再添加新的属性信息,这时候我们就需要用到动态表单,然后还添加动态验证规则。 vue代码 1、template <el-form :model="ruleForm" :inline="true" ref="ruleForm" label-width="100px"
阅读全文