<el-form class="add" label-width="80px" :model="stu"> <el-input v-model="stu.id" type="hidden"></el-input>
时间: 2023-07-03 10:03:43 浏览: 158
stu-class.rar_be a stu_beautiful_https://stuclass_https://stucla
这段代码是使用了 Element UI 中的表单组件 `<el-form>` 和输入框组件 `<el-input>`。其中,`class="add"` 表示这个表单有一个名为 "add" 的样式类;`label-width="80px"` 表示表单中标签的宽度为 80 像素;`:model="stu"` 表示该表单的数据模型是 `stu` 对象。
在表单中,有一个隐藏类型的输入框 `<el-input v-model="stu.id" type="hidden"></el-input>`,该输入框的模型绑定是 `stu.id`,因此当表单提交时,`stu.id` 的值会被包含在提交的表单数据中,但是不会在页面上显示出来。
阅读全文