From 3c88bbe182a95f7e9968329bd32f6570f29e5bc0 Mon Sep 17 00:00:00 2001 From: "mo.duan" Date: Tue, 8 Oct 2019 10:30:07 +0800 Subject: [PATCH] bug fixed #5748 --- src/components/select/select.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/select/select.vue b/src/components/select/select.vue index ea5c7189..0d3c73ae 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -258,7 +258,7 @@ this.$on('on-select-selected', this.onOptionClick); // set the initial values if there are any - if (!this.remote && this.selectOptions.length > 0){ + if ( this.selectOptions.length > 0){ this.values = this.getInitialValue().map(value => { if (typeof value !== 'number' && !value) return null; return this.getOptionData(value);