
ElementUI
ElementUI
sunddy_x
无限进步
展开
-
ElementUI选择器Select获取选中对象
获取选中对象的指定属性Id<el-select v-model="value" placeholder="请选择"> <el-option v-for="item in list" :key="item.Id" :label="item.Name" :value="item.Id"></el-option></el-select>有些情况下需要获取选中对象的全部数据, 添加value-key="Id", value-key为唯一性标识, 将原创 2020-12-11 19:02:35 · 7842 阅读 · 3 评论 -
Vue开发异常之Avoid mutating a prop directly since the value will be overwritten whenever the...
报错信息:[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated: "dialogVisible"避免直接更改prop,因为每当父组件重新渲染原创 2020-11-20 10:32:03 · 3625 阅读 · 1 评论