提交 8b4c0eed 编写于 作者: hudan's avatar hudan

修复下拉列表清除选中抛值问题---fix1

上级 100d70b0
...@@ -196,7 +196,7 @@ export default class DropDownList extends Vue { ...@@ -196,7 +196,7 @@ export default class DropDownList extends Vue {
val = tempVal.length >0?tempVal[0].value:null; val = tempVal.length >0?tempVal[0].value:null;
} }
const type: string = this.$util.typeOf(val); const type: string = this.$util.typeOf(val);
val = Object.is(type, 'null') || Object.is(type, 'undefined') ? '' : val; val = Object.is(type, 'null') || Object.is(type, 'undefined') ? null : val;
this.$emit('change', val); this.$emit('change', val);
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册