We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ade40f commit 01dfdfbCopy full SHA for 01dfdfb
src/components/MdField/MdSelect/MdSelect.vue
@@ -33,10 +33,14 @@
33
:md-content-class="mdClass"
34
:style="menuStyles"
35
@enter="onMenuEnter">
36
- <slot />
+ <slot v-if="showSelect" />
37
</md-menu-content>
38
</keep-alive>
39
40
+ <div v-if="!showSelect" v-show="false">
41
+ <slot />
42
+ </div>
43
+
44
<input class="md-input-fake" v-model="model" :disabled="disabled" readonly tabindex="-1" />
45
<select readonly v-model="model" v-bind="attributes" tabindex="-1"></select>
46
</md-menu>
0 commit comments