We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 783fa1b commit 77a3ecbCopy full SHA for 77a3ecb
src/components/mdSelect/mdSelect.vue
@@ -98,7 +98,8 @@
98
99
if (options.value === value) {
100
output.value = value;
101
- output.text = options.$refs.item.textContent;
+ output.text = options.$refs.item.textContent,
102
+ output.el = options.$refs.item;
103
}
104
});
105
@@ -137,6 +138,7 @@
137
138
139
this.selectedValue = output.value;
140
this.selectedText = output.text;
141
+ this.lastSelected = output.el;
142
143
if (this.parentContainer) {
144
this.parentContainer.setValue(this.selectedText);
0 commit comments