From 19999db9455bd9b7ab0e785fe52032c1cad929ac Mon Sep 17 00:00:00 2001 From: 刘汉宸 Date: Tue, 22 Sep 2020 18:57:14 +0800 Subject: [PATCH] fix: 修复Select选项计算 --- packages/select/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/select/index.vue b/packages/select/index.vue index 57f5b0a..6b2c1f9 100644 --- a/packages/select/index.vue +++ b/packages/select/index.vue @@ -127,7 +127,7 @@ export default { }, options(val) { if (val) { - this.optionsCurrent = this.fixOptions(this.optionsCurrent); + this.optionsCurrent = this.fixOptions([]); } }, }, -- libgit2 0.21.0