I am using semantic-ui-vue
dropdown and the placeholder
option is not working if I don't use multiple
attribute.
Here is my sandbox link .
I have placed 2 dropdowns:
multiple
attribute - Placeholder not workingmultiple
attribute - Placeholder workingHow to put placeholder in the 1st dropdown? In the same case, placeholder is working in their official documentation.
semantic-ui-vue requires the v-model value to be null
in order to consider it "empty"
So, if you modify your code to instead of defaulting to an empty string from: ""
you default to from: null