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);