I am trying to render a simple vue-multiselect dropdown from a project. The code is copied from one of the simpler examples on the website https://vue-multiselect.js.org/#sub-single-select
The code roughly looks as following:
indexPropertyMap: {
value: "",
options: [
"Select option",
"options",
"selected",
"multiple",
"label",
"searchable",
"clearOnSelect",
"hideSelected",
"maxHeight",
"allowEmpty",
"showLabels",
"onChange",
"touched",
],
},
};
The html looks as follows
<multiselect
v-model="indexPropertyMap.value"
:options="indexPropertyMap.options"
:searchable="false"
:close-on-select="false"
:show-labels="false"
placeholder="Pick a value"
></multiselect>
This does not render the dropdown.
The expected rendered HTML from the website is:
But what gets rendered in my app is
I have tried versions 2.1.7, 2.1.6 and 2.1.0 using yarn and cdn. Could you please guide me as to what could be the problem?

